Re: Riak Client Pooling in python

2011-12-09 Thread Eric Siegel
Thanks Aphyr, I don't really know ruby very well, but your code is definitely a good reference eric On Thu, Dec 8, 2011 at 11:18 AM, Aphyr wrote: > I don't know about Python, but we've been attacking this problem in the > Ruby client. You might find these useful: > > Re-entrant threadsafe reso

Re: Riak Client Pooling in python

2011-12-08 Thread Aphyr
I don't know about Python, but we've been attacking this problem in the Ruby client. You might find these useful: Re-entrant threadsafe resource pooling: https://github.com/seancribbs/ripple/blob/master/riak-client/lib/riak/client/pool.rb Node configuration/error tracking: https://github.com/se

Riak Client Pooling in python

2011-12-08 Thread Eric Siegel
Hey everyone, I'm sure this has been asked before but I was wondering what other people are doing for pooling clients using python? I've noticed that HttpPoolTranport is deprecated, and there doesn't seem to exist an analogous PBuffers version. I could just go ahead and write my own, but I thought