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...
The normal redis server allways reply OK for MULTI command. But when I use a proxy with *no* multi command support, the redisTemplate will be caught in error state. In...
Hi, There was an[ issue raised a while ago](https://github.com/spring-projects/spring-data-redis/pull/340) which supported null values in the collection that is returned from the `ReactiveHashOperations multiGet` method. Whilst this fixes the original NPE,...
Currently, there is no way to clear cache by key pattern, see #2379 - [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...
Hello, ## The Problem I found it difficult to delete the cached collection of records in Redis after making a batch update to database. ``` JAVA public int deleteBatch(Collection ids)...
Hi Folks - Our app is using spring-data-redis with Lettuce and we're hoping to be able to supply our own implementation of RedisCredentialsProvider so we can ensure fresh creds are...
Suppose we have this expensive method that we want to cache: ` public MyData getCarBrandDataForCountry(long carbrandId, long countryId){ // my expensive logic } ` Now, if some underlying data of...
Currently there is no RedisSerializer that can deserialize an object with generics like Set\. This is for example a problem when using redis as cache in spring boot: ``` @Cacheable("personCache)...
Currently there is no RedisSerializer that can deserialize an object with generics like Set\. This is for example a problem when using redis as cache in spring boot. See #2374...
I recently encountered a problem while developing locally with Spring Boot Dev Tools enabled (reproduced from 2.6.4 to 2.7.1). I'm not sure if you want to fix this, I'm not...
Hi, in version > 2.6: https://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#new-in-2.6.0 you support [GETEX](https://redis.io/commands/getex/) command that permits (I think) to have a kind of "time to idle" like in EhCache (`ExpiryPolicyBuilder.timeToIdleExpiration`) where the key doesn't...