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...
Resolves: #3253 Similar to `SINTERCARD`, It would be nice if we can provide same operation for zset. - [X] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [X] You...
Adds a method to increment the score of an element in a Redis sorted set. Implements the Redis `ZINCRBY` command through Spring Data’s RedisZSet. Includes a test verifying score updates...
### Problem `MessageListenerAdapter` relies on reflection (methodName, Object arguments) and lacks compile-time type safety. For modern Java (records, generics), this design seems to be outdated and error-prone. 😬 ### Proposed...
Closes: #3256
# Background After the server restarts, we want to read pending messages and then continue reading new messages, this is not possible because using 0 offset will only read pending...
`RedisZSet` provides a convenient collection-like abstraction around Redis sorted sets (ZSET). However, it currently lacks a method for the most common operation on sorted sets like incrementing a member’s score...
Upgrade to Lettuce 7.0.0 - [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....
Similar to `SINTERCARD` which implemented in https://github.com/spring-projects/spring-data-redis/blob/b09f75261c2042f2f0ab5438d0b56820d9b7e1ed/src/main/java/org/springframework/data/redis/core/DefaultSetOperations.java#L149-L154, It would be nice if we can provide same operation for zset.
Fix the issue where new messages are not read when a consumer is specified. Closes #3201