Skip to content
Advertisement

Tag: jedis

Jedis does not support returning PendingMessagesSummary

When I start the spring app write with Java 11, show error like this: I have already upgrade the Jedis version to the newest 4.2.3, why still did not support the Redis pending command? I have already read the Jedis issue. They already added the pending support in the Jedis 3.6.0, why still tell me that did not support? This

Delete multiple Redis stream id with Jedis

how can i delete multi redis stream id with jedis? they have a methods calls “xdel” – what is the type that i need to send to the method to delete multi key? i declare List but the method didnt get this type. i got this error – Answer Jedis xdel method takes varags of StreamEntryID. So you can do

Get Set value from Redis using RedisTemplate

I am able to retrieve values from Redis using Jedis: But when I am trying to use Spring’s RedisTemplate , I am not getting any data. My data is stored in Redis as a Set. Can someone please point out to me what am I missing? EDIT : My xml config for RedisTemplate. Answer In short You have to configure

Advertisement