redisson icon indicating copy to clipboard operation
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...

Results 561 redisson issues
Sort by recently updated
recently updated
newest added

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

question

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

question

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 ![20220213001405](https://user-images.githubusercontent.com/22114481/153719141-aa3af1b1-508a-4a69-94a9-265ea2230096.png) ![20220213001322](https://user-images.githubusercontent.com/22114481/153719145-1f807def-8c50-49e2-83b0-265a426f58be.png) ` 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...

bug

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

question

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

question

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