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

Use CLUSTER SHARDS command internally in cluster related classes to replace the usages of CLUSTER SLOTS command.

enhancement

https://redis.io/commands/cluster-shards/

enhancement

### Expected behavior Write here what you're expecting ... ### Actual behavior Write here what happens instead ... ### Steps to reproduce: Please create a reproducible case of your problem....

in my user cases there are numbers of requests (around 200) pipelined, and the total size of such responses is much more than 8192 bytes, so in the lower tier...

Jedis alternatively uses `int` and `long` while receiving offset, count and similar parameters. We should change it to consistently use either one of those. Which one should it be? Here...

discussion needed

When I use Jedis 4.0.0 in Springboot, it can't start, in jedis 3.7.1 is OK ### Redis / Jedis Configuration there is my config file @Configuration @Slf4j public class RedisConfig...

### Expected behavior How can I solve the problem of reconnection ### Actual behavior My test environment often prompts "jedisnreachableclusternodeexception: no reachable node in cluster". I think my test environment...

### Expected behavior There should be no changes in response time or any error encountered irrespective of the master node used while instantiating JedisCluster in jedis client. ### Actual behavior...

I really appreciate the good work which has good into this excellent library, but does Jedis really need GSON for JSON-support? For example there is a security issue with GSON...

dependencies

**My jedis configurations :** Set jedisClusterNodes = new HashSet(); jedisClusterNodes.add(new HostAndPort("127.0.0.1", 30001)); jedisClusterNodes.add(new HostAndPort("127.0.0.1", 30002)); jedisClusterNodes.add(new HostAndPort("127.0.0.1", 30003)); GenericObjectPoolConfig jedisPoolConfig = new GenericObjectPoolConfig(); jedisPoolConfig.setMaxWaitMillis(10); JedisClientConfig jedisClientConfig = DefaultJedisClientConfig.builder().timeoutMillis(50).build(); jedis =...