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...
Fix. #2168 ### Summary This issue arises in ```MappingRedisConverter.write(…)```, which by default treats all inputs—including JDK internal types like ```Arrays.asList(...)```—as domain entities. It looks up a ```PersistentEntity``` for every input...
## Description This pull request updates the Javadoc of both `RedisTemplate#keys()` and `RedisOperations#keys()` methods to include a performance warning regarding the use of the `KEYS` command. The `KEYS` command performs...
This pull request includes minor updates to the `StreamMessageListenerContainer` class in the Spring Data Redis project. The changes include a correction to a parameter description and assertion message, as well...
Inside validateConnection, called `resetConnection()`, and then called release(), but the action of `release()` does not necessarily **discard** the connection. So, `getNativeConnection() ` probably get a same channel(TCP) which is invalid....
Fixed minor typo on example code `RedisCacheConfiguration.defaultCacheConfig().enableTtl(Duration.class)` to `RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.class)` [Related Docs](https://docs.spring.io/spring-data/redis/reference/redis/redis-cache.html#redis:support:cache-abstraction:expiration:tti) - [ ] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [ ] You use the code formatters...
- [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...
After reviewing the codebase, I found that the nullSafeDeserializedStoreValue method is not being used anywhere in the project. Here’s why I think it’s safe to remove it: The method is...
Fix issue: #2261 Referring to pull request #2563 , modified the logic to use CountDownLatch to wait for completion on cancel without busy-spin. If there are any improvements or suggestions,...