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
Use Connection pool with Jedis

I am using Jedis to connect with a Redis server in a REST service. When I am calling the web …

java multithreading spring-boot connection-pooling jedis
spring-data-redis 1.7.2 Injection redisTemplate failed

When I use Spring Data Redis to inject redisTemplate, the following error occurs: Caused by: org.springframework.beans.factory.BeanCreationException: …

java spring redis jedis spring-data-redis
Redis/Jedis no single point of failure and automated failover

In a simple situation with 3 servers with 1 master and 2 slaves with no sharding. Is there a proven solution with java …

java amazon-web-services nosql redis jedis
Spring Redis template with Jedis connection factory , Redis standalone configuration and multi-threading

I am using Spring Redis template in a multi-threaded environment. One thread saves the data into Redis and other one (…

multithreading spring-boot redis resttemplate jedis