The official Redis homepage lists JDBC-Redis and JRedis. What are the advantages / disadvantages of each ? Are there any other options ?
|
|
You can use also Jedis, which is also in the official Redis clients page. It is compatible with the latest version of Redis. UpdateAs of June 2012, Jedis is the Java client library recommended by the Redis official page. |
||||
|
|
|
Both Jedis and JRedis are being actively developed. I personally use Jedis since it seems to be more actively developed. Spring provides a wrapper around both implementations and they're providing serialization/deserialization, amongst other things:
http://git.springsource.org/spring-data/spring-keyvalue-redis/ UPDATE Spring Data now added support for a 3rd library called rjc (Redis Java Client) -- I don't know what the pros/cons for it are, though. |
||||
|
|
|
I've tried JDBC-Redis, Jredis and Jedis. JDBC-Redis is not good at performance. JRedis and Jedis both fast, I use Jredis for times but now I prefer Jedis because of simple and I can handle network connection error as I want. |
|||
|
|
|
An easier solution is to not worry about working at the lowest level but use an Object Hash Mapper (OHM) like JOhm instead. JOhm lets users decorate their existing objects with familiar annotations to allow persistence to Redis without any invasive code changes. It does not even need any external configuration. You can think of the OHM as a NoSQL counterpart to the ORM of RDBMS. JOhm is hosted here |
||||
|
|
|
JDBC-Redis is just a JDBC wrapper for JRedis database. |
|||||||
|
|
just an update: it seems jredis is not that active anymore, jedis however is going strong and had some great features implemented recently, it s also the same developer of JOhm. extract from their readme on github: Ok.. so what can I do with Jedis? [...] Transactions Pipelining Publish/Subscribe Persistence control commands Remote server control commands Connection pooling Sharding (MD5, MurmureHash) Key-tags for sharding Sharding with pipelining I was using jredis until recently on half a dozen of projects, moved them all to jedis in no time, without surprises. |
|||
|
|
|
Jedis is a very good client. I have used jedis to make some performance test against redis. 50 clients, 1m requests completed in 20 seconds(on a old intel 2core 2.6g machine, 100m network). I believe the performance can be much higher if I can use 1000m network to do the test. |
|||
|
|