Re: memcache, redis connection pooling

2010-11-25 Thread Saul Hazledine
On Nov 24, 9:12 pm, Wilson MacGyver wmacgy...@gmail.com wrote: I highly recommend jedis for redis java lib. It supports connection pooling, pub/sub. and works with the 2.0 protocol. https://github.com/xetorthio/jedis Many thanks for that. Now it looks like the best way forward is to wrap

Re: memcache, redis connection pooling

2010-11-24 Thread Wilson MacGyver
I highly recommend jedis for redis java lib. It supports connection pooling, pub/sub. and works with the 2.0 protocol. https://github.com/xetorthio/jedis Any reason why you want to use both memcached and redis at the same time? redis is basically memcached++, with collection/queue support as

memcache, redis connection pooling

2010-11-21 Thread Saul Hazledine
Hello, I am looking at adding memcache and redis support to a caching library that I have written. Ideally, I'd like TCP/IP connections to be pooled and reused. Pooling should reduce the number of open connections and remove the latency of creating new connections. In my experience with other