Re: couchdb performace 10x: using NIF for file io

2010-10-24 Thread Richard Heycock
Excerpts from Kirill A. Korinskiy's message of 2010-10-25 08:28:37 +1100: > Hi! > > Cool story but you messages take a broken links :( The links are valid from here: http://groups.google.com/group/erlang-programming/browse_thread/thread/f667a9a87ada3e7d rgh > On Mon, Oct 25, 2010 at 01:05,

Re: File descriptor leaks?

2010-10-24 Thread Justin Sheehy
Hi, Dmitry. On Mon, Oct 18, 2010 at 11:07 PM, Dmitry Demeshchuk wrote: > We are using 0.12.1. There was indeed a file descriptor leak in that version of Riak, fixed between then and the 0.13 release. I hadn't seen any situations which were causing it to take effect nearly as quickly as you're

Re: couchdb performace 10x: using NIF for file io

2010-10-24 Thread Kirill A. Korinskiy
Hi! Cool story but you messages take a broken links :( On Mon, Oct 25, 2010 at 01:05, NevB wrote: > Hi, > > I came across this thread in the Erlang group and thought the Riak > team might find it interesting. > > Please forgive me if its not relevant to Riak > > Kind Regards > > Neville > > > -

Re: couchdb performace 10x: using NIF for file io

2010-10-24 Thread Neville Burnell
erlang groups link: http://groups.google.com/group/erlang-programming/browse_thread/thread/f667a9a87ada3e7d On 25 October 2010 08:05, NevB wrote: > Hi, > > I came across this thread in the Erlang group and thought the Riak > team might find it interesting. > > Please forgive me if its not relev

Fwd: couchdb performace 10x: using NIF for file io

2010-10-24 Thread NevB
Hi, I came across this thread in the Erlang group and thought the Riak team might find it interesting. Please forgive me if its not relevant to Riak Kind Regards Neville -- Forwarded message -- From: Joel Reymont Date: Oct 25, 12:56 am Subject: couchdb performace 10x: using N

keys list from java client

2010-10-24 Thread Andrea Campolonghi
Hi, I am trying to get a keys list using the java driver like this: BucketResponse r = this.rc.listBucket(this.bucket); String key; int counter =0; if (r.isSuccess()) { RiakBucketInfo info = r.getBucketInfo(); Collection keys = info.getKeys(); Iterator it = keys.iterator(

Re: Ruby client - problem listing bucket keys

2010-10-24 Thread Ted Behling
Thanks for the reply, Sean! And on a Sunday no less. I took your advice and installed the "yajl-ruby" gem. My broken one-liner, below, now works if changed to the following. Merely installing "yajl-ruby" didn't work; I also had to add the " require 'yajl' " line. Also, this one-liner succeed

Re: Ruby client - problem listing bucket keys

2010-10-24 Thread Sean Cribbs
Ted, There is a simple fix for this (which I believed was in there already). First of all, install the json or yajl-ruby gems (the default parsing from ActiveSupport is bad). Then add this to your script: ActiveSupport.parse_json_times = false ActiveSupport tries to be smart about parsing str