redisson
redisson copied to clipboard
Redisson - Valkey & Redis Java client. Real-Time Data Platform. Sync/Async/RxJava/Reactive API. Over 50 Valkey and Redis based Java objects and services: Set, Multimap, SortedSet, Map, List, Queue, De...
I try to use redisson lock on a spring/reactor stack. Following the doc, I tried the following code: ``` java return MonoLog.info("try to get the lock") .then(lock.tryLock(10, 15, TimeUnit.SECONDS)) .flatMap(isLocked...
Hi Team, We are facing issue while setting address for redis. config.useSingleServer().setAddress(redis://192.168.8.8:8787); We are getting following values for the above address url : [2022-08-09 02:04:44,367] INFO [RedissonUtil.java,185] addressCreator : 192.168.8.8:8787...
We are running the application while using Redisson to read and write values and after a while the memory utilization of the application grows incrementally and then it throws out...
The version used is spring-data-redis-2.4.14.jar   ` ERROR o.s.d.r.s.DefaultStreamMessageListenerContainer$LoggingErrorHandler - [handleError,388] - Unexpected error occurred in scheduled task. java.lang.NullPointerException: null at org.springframework.data.redis.stream.StreamPollTask.deserializeAndEmitRecords(StreamPollTask.java:171) at org.springframework.data.redis.stream.StreamPollTask.doLoop(StreamPollTask.java:148) at org.springframework.data.redis.stream.StreamPollTask.run(StreamPollTask.java:132) at java.lang.Thread.run(Thread.java:748) `
incUsage is not called when acquireConnection -> createConnection but decUsage is still called when releasrConnection, which lead usage to become -1 after this, PingConnectionHandler will behave incorrectly: 1. send ping...
I tried to run Redisson 3.17.5 with Spring Native 2.7.1 (https://docs.spring.io/spring-native/docs/current/reference/htmlsingle/) but facing issues, when running the build. Is there an official statement, whether Redisson is or will be compatible...
**Expected behavior** Configuration Properties to be recognized correctly. **Actual behavior** Editor(VS Code 1.70.0-insider) , Maven Build (quarkus-maven-plugin:2.11.2.Final ) and quarkus runtime all complain / warn about unrecognized properties for redisson....
> quarkus: 2.11.1.Final redission: org.redisson:redisson-quarkus-20:3.17.5 os: windows10 java: jdk17 gradle:7.4.2 example ``` @Inject RedissonClient redisson; redisson.getBucket(name).get() ``` error ``` 2022-08-06 12:16:48,730 INFO [org.red.Version] (vert.x-eventloop-thread-0) Redisson 3.17.5 2022-08-06 12:16:48,756 WARN [io.net.res.dns.DefaultDnsServerAddressStreamProvider]...
Hi. RedissonLock and other Redisson lock implementations I saw so far are all reentrant. For my use case I need non-reentrant lock. A semaphore would do the job but it...
**Is your feature request related to a problem? Please describe.** redssion throw a Exception from async thread , the exception stacktrace just report async thread info , we can't location...