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...
**[Michael Gmeiner](https://jira.spring.io/secure/ViewProfile.jspa?name=gmeiner.m)** opened **[DATAREDIS-831](https://jira.spring.io/browse/DATAREDIS-831?redirect=false)** and commented I do not find any support of using the RedisRepository feature with ReactiveCrudRepository. For example the following using: ```java @Repository interface BookRepo : ReactiveCrudRepository...
On update intensive applications, where CrudRepository.save/saveAll is called many times on already existing keys, the current implementation uses DEL command before SET, and this puts some pressure on the DB...
Deprecations for #2288 and #2274.
We use spring-data-redis and lettuce to access the redis cluster. I don't know the cause, but there was a problem that the connection could not be initialization complete As a...
Redis 6.2.0 added support for count argument to LPOP and RPOP: https://redis.io/commands/rpop. Can we add the support? I'm currently using luascript as a workaround
This change adds the `approximateTrimming` option to the reactive stream operations coroutines extension. I do not think this change warrants an additional test case since this function is already covered,...
There is a type issue in Kotlin due to the missing `@Nullable` annotation.
`indexOf` and `lastIndexOf` methods are missing the `@Nullable` annotation causing issues for nullability checks in Kotlin.
I tried to be conservative with the parameter name changes, only changing methods with the same function signature as in the Redis docs. I couldn't bring myself to change param...