jedis icon indicating copy to clipboard operation
jedis copied to clipboard

Redis Java client

Results 259 jedis issues
Sort by recently updated
recently updated
newest added

`###` Expected behavior `hrandfieldWithValues(String key, long count)` should return the count equivalent entries in case of a negative (absolute value of count) or a positive count value. ### Actual behavior...

BUG

RESET command that resets client connection state Ref: redis/redis#7982

enhancement

I was reading a colleague's code and came across a surprising (to me) piece of code involving `jedis.subscribe.` "Ok," I though, "Let me look at the javadoc of this method...

documentation

This PR adds a strict checking for getting slot info from the node without slots. In master promotion, for example, a user might leave accidentally a old master/slave node after...

SPUBLISH, SSUBSCRIBE, SUNSUBSCRIBE, PUBSUB SHARDCHANNELS/SHARDNUMSUB commands References: 1. https://github.com/redis/redis/pull/8621 2. https://github.com/redis/redis/pull/10792

enhancement

What movement is safe async? Is reading or publishing safe in async?

Here is my pool config ``` GenericObjectPoolConfig config = new GenericObjectPoolConfig(); config.setMaxTotal(8); config.setMaxIdle(8); config.setMinIdle(0); config.setBlockWhenExhausted(true); config.setMaxWaitMillis(-1); jedisPool = new JedisPool(config, "localhost", 6379); ``` My test code ``` ExecutorService service =...

stale