Top "Jedis" questions

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

Could not get a resource from the pool(SocketTimeoutException:)

I'm running multiple worker threads(around 10) to access the data from the redis Q. For the i'm using infinte timeout …

java redis socketexception jedis
Configure Jedis timeout

I'm having problems completing an .hgetall(), here's what I've tried: Jedis jedis = new Jedis(REDIS_MASTER_NODE); jedis.connect(); jedis.…

java redis jedis
How Jedis Pool works?

I'm using Jedis pool to manage connections to Redis server. An example code of mine as follows: public Set<…

java connection-pooling jedis
How to use java object as a value in Redis

I am pretty new to Redis. I downloaded Jedis and added that to my classpath. But, it doesnt provide a …

jedis
Get Set value from Redis using RedisTemplate

I am able to retrieve values from Redis using Jedis: public static void main(String[] args) { Jedis jedis = new Jedis(…

java spring redis jedis
Why is data getting stored with weird keys in Redis when using Jedis with Spring Data?

I am using Spring Data Redis with Jedis. I am trying to store a hash with key vc:${list_id}. …

redis spring-data jedis
Redis/Jedis - Delete by pattern?

Normally, I get the key set then use a look to delete each key/value pair. Is it possible to …

java redis jedis del
Best way to store a list of java objects in Redis

It would be great if someone could suggest me on what would be the best way to store a list …

java redis key-value jedis
Jedis, Cannot get jedis connection: cannot get resource from pool

I have seen answers in couple of threads but didn't work out for me and since my problem occurs occasionally, …

spring redis jedis spring-data-redis
Integration Testing with Redis

I've started using Redis in my project with the help of the Jedis library. All is working fine but now …

java redis integration-testing playframework-1.x jedis