spring-data-redis
spring-data-redis copied to clipboard
Provides support to increase developer productivity in Java when using Redis, a key-value store. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository...
I wanted to use the [ZRANGESTORE](https://redis.io/commands/zrangestore/) command along with the `BYSCORE` option but seems like there is no corresponding method for it in `RedisTemplate.opsForZSet()`. Both [Jedis](https://github.com/redis/jedis/issues/2626) and [Lettuce](https://github.com/lettuce-io/lettuce-core/issues/1506) support this...
**[ocristian](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER50513)** opened **[DATAREDIS-1227](https://jira.spring.io/browse/DATAREDIS-1227?redirect=false)** and commented _LettuceConnetionFactory_ has a property to eager initialize, _afterPropertiesSet()_, _StatefulRedisConnection_ but it dosen't work for **StatefulRedisClusterConnection**. Cluster connection can take more time to be ready, it...
Invocation of `org.springframework.data.redis.listener.RedisMessageListenerContainer.SubscriptionTask#unwrap` may result in an `ArrayIndexOutOfBoundsException` in case the passed collection (e.g. the `channelMapping` ConcurrentHashMap) is modified between the `byte[][] unwrapped = new byte[holders.size()][];` and the `for (ByteArrayWrapper...
hi. I'm using Spring Boot 2.6.6. right now, in order to run the [xautoclaim](https://redis.io/commands/xautoclaim/) command, I have to get the native lettuce client and use a lettuce command interface ....
Closes #2311 - [x] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [x] You use the code formatters provided [here](https://github.com/spring-projects/spring-data-build/tree/master/etc/ide) and have them applied to your changes. Don’t submit...
- [X] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [X] You use the code formatters provided [here](https://github.com/spring-projects/spring-data-build/tree/master/etc/ide) and have them applied to your changes. Don’t submit any formatting...
We ran into the situation that was referenced in [DATAREDIS-1052](https://jira.spring.io/browse/DATAREDIS-1052?redirect=false) We had an exception during the attempt to unlock: ExceptionCause="redis.clients.jedis.exceptions.JedisConnectionException: Attempting to read from a broken connection" ExceptionStack="org.springframework.data.redis.RedisConnectionFailureException: Attempting to...
Method readCollectionOrArray creates a collection, although if there are no keys it returns null, which seems kinda strange. Wouldn't it be more client-friendly to return an empty list? For example:...