Best Redis library for Java [closed]

You can use also Jedis, which is also in the official Redis clients page. It is compatible with the latest version of Redis.

Update

As of June 2012, Jedis is the Java client library recommended by the Redis official page.


I've tried JDBC-Redis, Jredis and Jedis. JDBC-Redis is not good at performance. JRedis and Jedis are both fast, I use Jredis for times but now I prefer Jedis because it's simple, and I can handle network connection errors as I want.