lettuce icon indicating copy to clipboard operation
lettuce copied to clipboard

Advanced Java Redis client for thread-safe sync, async, and reactive usage. Supports Cluster, Sentinel, Pipelining, and codecs.

Results 277 lettuce issues
Sort by recently updated
recently updated
newest added

## Bug Report Looking at the code in `RedisClusterClient.refreshPartitionsAsync` it seems like the partitions are updated even when it has been determined they haven't changed: https://github.com/lettuce-io/lettuce-core/blob/70022607cf8ab2fb45d6814372b20da90aae2be3/src/main/java/io/lettuce/core/cluster/RedisClusterClient.java#L891-L905 Was curious if this...

for: team-attention
status: waiting-for-triage

## Bug Report We are observing `io.lettuce.core.RedisCommandTimeoutException: Command timed out after 10 second(s)` intermittently while connecting to redis from windows docker.Lettuce is trying to reconnect to redis and for some...

status: waiting-for-feedback

## Bug Report The problem is similar to /issues/1474 which was related to a different place in the code but has the same symptoms. When I try to get a...

type: bug
status: good-first-issue

## Bug Report Thread blocked when using one global instance of ClientResources but repeatedly opening and closing connections. Similar issues I had found about using multiple clientResources over here https://github.com/redis/lettuce/issues/1269....

type: bug
status: help-wanted

# Bug Report When using the reactor client and performing Redis operations within the onErrorResume block, there is a chance of encountering thread deadlock. This can impact all threads at...

type: bug

## Feature Request #### Is your feature request related to a problem? Please describe Sometimes need to shut down Redis for maintenance, such as version upgrades. When shutdown or kill...

status: waiting-for-feedback

Hi Everyone, Hope everyone is doing great! I know this issue might not related to lettiuce but because it is redis then might be someone would have encountered the same....

for: stackoverflow

Hi, I am getting Pool exhausted when I pass a ClientResources which does use an executor with virtual threads. ``` java.util.concurrent.CompletionException: java.util.NoSuchElementException: Pool exhausted at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(Unknown Source) ~[?:?] at java.base/java.util.concurrent.CompletableFuture.uniApplyNow(Unknown...

for: stackoverflow
status: waiting-for-feedback

## Bug Report #### Current Behavior Stack trace ```java rg.springframework.data.redis.RedisSystemException: Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: READONLY You can't write against a read only slave. at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:54) ~[spring-data-redis-2.1.20.RELEASE.jar!/:2.1.20.RELEASE] at...

status: waiting-for-feedback
status: feedback-reminder

## Bug Report When RedisClusterClient is shutdown, the ClusterTopologyRefreshTask may not be cancelled. #### Current Behavior When I close the RedisClusterClient by invoking RedisClusterClient.shutdown method, there is a chance that...