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

If we use a forwarding `RedisConnectionFactory`, which does not extends the `LettuceConnectionFactory`, and delegate the get connection to `LettuceConnectionFactory`, then the `RedisMessageListenerContainer` does not work anymore. It works in 2.6.13....

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

Replace usage of deprecated commands setEx, pSetEx and setNX in DefaultValueOperations by set command with additional SetOption arguments Closes ##2897

status: waiting-for-triage

In DefaultValueOperations, the set method with timeout argument calls the setEx command internally. However, SETEX command was deprecated in version 2.6.12 of Redis. According to Redis documentation, it is recommended...

status: ideal-for-contribution
type: enhancement

Using Spring data Redis 3.2.5 and repository, Given this structure ``` @RedisHash("Fruit") public class Fruit { @Id private Integer id; private String name; private Timestamp createdAt; } ``` And ```...

status: waiting-for-triage

[Lettuce 6.1.0.RELEASE](https://github.com/redis/lettuce/releases/tag/6.1.0.RELEASE) added support for three SSL/TLS verification modes (`SslVerifyMode`): * `NONE` (corresponds with `setVerifyPeer(false)`) * `CA` (only verifies the CA and cert, without verifying the hostname matches) * `FULL`...

type: enhancement

The following code can be found in `org.springframework.data.redis.cache.RedisCache`. ```java private final Lock lock = new ReentrantLock(); @Override @SuppressWarnings("unchecked") public T get(Object key, Callable valueLoader) { ValueWrapper result = get(key); return...

status: pending-design-work
for: team-attention

I am using the function to check if a key exist or not, but actually I have a list of keys that needs to be checked. I can't find a...

status: ideal-for-contribution
type: enhancement