jredis
jredis copied to clipboard
Java Client and Connectors for Redis
We've had a request to support the `TIME` command (http://redis.io/commands/time) in Spring Data Redis. It doesn't seem to be implemented yet in JRedis.
Running the following test code produced the following error. The same problem occurs with msetnx. ``` @Test public void testMSet() throws RedisException { ConnectionSpec connectionSpec = DefaultConnectionSpec.newSpec("localhost", 6379, 0, null);...
``` Java JRedis client = new JRedis(); client.set("key", "நாஇன் நல்லவன் இல்லை subhash"); // text in Tamil // Later: String out = new String(client.get("key")); // This corrupted text ``` I am...
if the JRedisClient fails to connect to the server every connection attempt leaves a HeartbeatJinn in memory. Because a ClientRuntimeException is thrown and the Thread will remain in the memory...
Some hash operations and set/zset intersection are still not available in Redis. Issue 24 seems to add support for it. The following ops are missing: set/get/resetConfig shutdown multi/exec/watch/unwatch persist setEx...
Seems the current master has removed JRedisService and thus support for pooling. Would it be possible to bring it back? Additionally (maybe unrelated) would it be possible to programmatically disable...
Seems that JRedis does not provide any support for pub/sub. Are there any plans to support this in the near future?
Sometime it happens that jredis falls into infinitive loop of throwing errors on disconnect method: JREDIS: while attempting reconnect: Factual error in method ConnectionBase.disconnect() [file: ConnectionBase.java line:384 - package: org.jredis.ri.alphazero.connection]...
When I updated the jredis , I got the error when JRedisService reconnected . The Exception info is as follow: ERROR - -1 read count in readLine() while reading response...
I am experiencing this exception while using the keys() method -- JREDIS -- BUG: serviceRequest() -- ProviderException: Bug? Expecting status code for size/count -- JREDIS -- INFO: serviceRequest() -- closing...