On Nov 24, 9:12 pm, Wilson MacGyver 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 existing Java li
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 valu
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 s