Top "Jedis" questions

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

ERR Client sent AUTH, but no password is set

I am using jedis 2.8.0 and getting following exception: Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR Client sent AUTH, but …

authentication redis jedis
Extracting Keys From Redis

I use this following code to extract all of the Keys start with "NAME:" and it return only over 5,000 records (…

java redis jedis
JedisConnectionException: java.net.SocketTimeoutException: connect timed out

I'm using jedis for simple key-value data store... My code is as follows private static final String HOST = "50.30.35.9"; private static …

java redis jedis
NoSuchMethodError: org.springframework.data.repository.config.RepositoryConfigurationSource.getAttribute

I am trying to use spring-data-redis in a spring-boot application to work with redis. I am creating JedisConnectionFactory as follows: …

java spring-boot jedis spring-data-redis
Redis performance on a multi core CPU

I am looking around redis to provide me an intermediate cache storage with a lot of computation around set operations …

redis cpu cpu-usage jedis
Redis Key expire notification with Jedis

I am trying to implement a expiry key notification with redis ,when my key expires in the redis data store. …

java redis jedis
Redisson vs Jedis for redis

Now I have to use a java client for redis. I have come across Jedis and Redisson. EDIT: Reframing as …

java caching redis jedis redisson
Can Jedis get/set an Java POJO?

I'm using Jedis as the java client to connect to Redis Servers. Question 1: It seems there is no method to …

jedis
JedisPoolConfig is not assignable to GenericObjectPoolConfig

I have a Spring based java web application hosted on Heroku. I am attempting to utilize the Spring Caching abstraction …

java spring caching redis jedis
Using jedis How to cache Java object

Using Redis Java client Jedis How can I cache Java Object?

redis jedis