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...
Provide an overload that comes with a `TimeUnit` and convert the value to `double` in case of `MILLISECONDS`. ```java List bLPop(int timeout, TimeUnit timeUnit, byte[]... keys); List bRPop(int timeout, TimeUnit...
The `KEEPTTL` option can be set on connection level. It would be beneficial to have this also on the operations one. See: #2081
**[Kevin Wang](https://jira.spring.io/secure/ViewProfile.jspa?name=zwang)** opened **[DATAREDIS-1061](https://jira.spring.io/browse/DATAREDIS-1061?redirect=false)** and commented Simple test case: ```java @SpringBootApplication @EnableMapRepositories @EnableRedisRepositories public class DemoApplication { @Autowired private RedisConverter redisConverter; public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); }...
Hey guys! Right now it's not allowed to execute Lua scripts from `MULTI` block, due to check in the [JedisScriptingCommands](https://github.com/spring-projects/spring-data-redis/blob/b8eabee2b04eaba3245cb1008c956290b0081af2/src/main/java/org/springframework/data/redis/connection/jedis/JedisScriptingCommands.java#L130). As far as I know, this behavior is allowed by...
**[Greg Turnquist](https://jira.spring.io/secure/ViewProfile.jspa?name=gregturn)** opened **[DATAREDIS-428](https://jira.spring.io/browse/DATAREDIS-428?redirect=false)** and commented Listener configuration in Spring Data Redis requires always to define a `MessageListener` because Spring Data Redis has no built-in support for an annotation-driven configuration...
**[David Tanner](https://jira.spring.io/secure/ViewProfile.jspa?name=dgtanner)** opened **[DATAREDIS-678](https://jira.spring.io/browse/DATAREDIS-678?redirect=false)** and commented https://docs.spring.io/spring/docs/current/spring-framework-reference/html/cache.html Synchronized caching * _In a multi-threaded environment, certain operations might be concurrently invoked for the same argument (typically on startup)._ By default, the...
**[James Green](https://jira.spring.io/secure/ViewProfile.jspa?name=jgreen)** opened **[DATAREDIS-820](https://jira.spring.io/browse/DATAREDIS-820?redirect=false)** and commented This is one of those "it was working last week I swear" issues. We are storing a JSON formatted value in a hash and...
**[Yan Ma](https://jira.spring.io/secure/ViewProfile.jspa?name=hi.yanma)** opened **[DATAREDIS-814](https://jira.spring.io/browse/DATAREDIS-814?redirect=false)** and commented We are using Redis as the main in-memory DB. Our business requirements heavily demand range queries based on attributes of timestamp type or numeric...
- Kotlin code fails to compile on JDK 15 #1833