Top "Jedis" questions

Jedis is a small free client for Redis, written in and for Java.

Should I read from a Redis Cluster slave?

We have a cluster configuration for Redis used as cache. Now due to the normal pattern of write to master …

java redis jedis redis-cluster redisson
Broken pipe while using Jedis Pool

I'm using Jedis to perform a lot of insertions/reads in Redis. The Redis server is using the default configuration. …

java redis pool jedis
Check connection Redis

I am using the Redis in Java using the Jedis client. I am creating a JedisPool and would like to …

java redis jedis
spring data redis master slave config

Following is my jedis config @Bean public JedisConnectionFactory getJedisConnectionFactory() { JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory(); jedisConnectionFactory.setUsePool(true); return jedisConnectionFactory; } @Bean public …

java spring redis jedis spring-data-redis
Jedis - When to use returnBrokenResource()

When exactly we should use this method. On JedisConnectionException, JedisDataException or for any JedisException. There is no good API documentation …

java exception redis jedis