spring-data-redis icon indicating copy to clipboard operation
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...

Results 287 spring-data-redis issues
Sort by recently updated
recently updated
newest added

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...

status: waiting-for-triage

## 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...

type: documentation

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...

type: documentation

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....

type: enhancement

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...

type: documentation

- [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...

status: waiting-for-triage

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...

status: waiting-for-triage

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,...

status: waiting-for-triage
status: pending-design-work