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...
**[Greg Dubicki](https://jira.spring.io/secure/ViewProfile.jspa?name=gdubicki)** opened **[DATAREDIS-343](https://jira.spring.io/browse/DATAREDIS-343?redirect=false)** and commented Please consider improving pipelining documentation, especially: 1. Provide an example code for using "the standard execute method, passing true for the pipeline argument". 2....
**[Ajilkumar](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER50527)** opened **[DATAREDIS-1229](https://jira.spring.io/browse/DATAREDIS-1229?redirect=false)** and commented Application is running with spring-boot 2.3.1 and lettuce 5.3.1 with Redis Cluster enabled. On Startup application is subscribing to expired events to the master node...
**[j-razeed](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER49947)** opened **[DATAREDIS-1206](https://jira.spring.io/browse/DATAREDIS-1206?redirect=false)** and commented We are planning to use elasticache redis for our spring boot application. I created elasticache redis cluster (3 shards and 2 replica per shard. so...
**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** opened **[DATAREDIS-534](https://jira.spring.io/browse/DATAREDIS-534?redirect=false)** and commented Keyspace notifications in Redis Cluster are published only to the local node (see https://github.com/antirez/redis/issues/2541. Keyspace notifications are not broadcasted to all nodes). Spring Data...
**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** opened **[DATAREDIS-837](https://jira.spring.io/browse/DATAREDIS-837?redirect=false)** and commented Add support for the following commands: * ZPOP * BZPOP * ZREVPOP * BZREVPOP --- **Issue Links:** - [DATAREDIS-841](https://jira.spring.io/browse/DATAREDIS-841) Add support for ZPOPMIN, ZPOPMAX,...
**[zhou-hao](https://jira.spring.io/secure/ViewProfile.jspa?name=zhou-hao)** opened **[DATAREDIS-1081](https://jira.spring.io/browse/DATAREDIS-1081?redirect=false)** and commented https://github.com/spring-projects/spring-data-redis/blob/master/src/main/java/org/springframework/data/redis/connection/ReactiveHashCommands.java#L296-L302https://github.com/spring-projects/spring-data-redis/blob/master/src/main/java/org/springframework/data/redis/connection/ReactiveHashCommands.java#L296-L302 io.lettuce.core.RedisCommandTimeoutException: Command timed out after 1 minute(s) at io.lettuce.core.ExceptionFactory.createTimeoutException(ExceptionFactory.java:51) Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: Assembly trace from producer [reactor.core.publisher.MonoFromPublisher] : reactor.core.publisher.Mono.from(Mono.java:362) io.lettuce.core.AbstractRedisReactiveCommands.createMono(AbstractRedisReactiveCommands.java:433)Error has been observed at the...
**[olivierboudet](https://jira.spring.io/secure/ViewProfile.jspa?name=olivierboudet)** opened **[DATAREDIS-1065](https://jira.spring.io/browse/DATAREDIS-1065?redirect=false)** and commented In DefaultListOperations, the *Pop methods accept only one key as arguments. It would be useful to allow multiple keys to pop from. If I am...
**[Mikael Carlstedt](https://jira.spring.io/secure/ViewProfile.jspa?name=mikael.carlstedt)** opened **[DATAREDIS-882](https://jira.spring.io/browse/DATAREDIS-882?redirect=false)** and commented Both eval() and evalSha() methods in JedisScriptingCommands throw [UnsupportedOperationException](https://github.com/spring-projects/spring-data-redis/blob/66945e62923adca2cbc98ba51736b948aa1de49a/src/main/java/org/springframework/data/redis/connection/jedis/JedisScriptingCommands.java#L124) when called from inside a transaction or pipeline. However, LUA script execution works fine inside...
**[Jennifer Hickey](https://jira.spring.io/secure/ViewProfile.jspa?name=jencompgeek)** opened **[DATAREDIS-236](https://jira.spring.io/browse/DATAREDIS-236?redirect=false)** and commented The range and reverseRange methods that allow a user to specify an offset and count are present in the ZSetOperations interface, but not the...
**[Sergei Egorov](https://jira.spring.io/secure/ViewProfile.jspa?name=bsideup)** opened **[DATAREDIS-362](https://jira.spring.io/browse/DATAREDIS-362?redirect=false)** and commented Redis allows you to specify ranges with strings, i.e. "-inf", or "(2": http://redis.io/commands/zremrangebyscore But this methods are missing in ZSetOperations. Since it's native Redis...