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

I configured Redis Sentinel using docker-compose and used spring boot to connect to redis sentinel ### Docker-compose ```yml redis-master: image: 'redis:latest' environment: - REDIS_REPLICATION_MODE=master - REDIS_PASSWORD=admin - ALLOW_EMPTY_PASSWORD=yes command: "redis-server...

status: waiting-for-feedback

First of all, thanks a lot for this library. It's really fun to work with it, especially compared to Jedis. I need to update several keys within one transaction, some...

## Bug Report #### Current Behavior We found that at some point a netty error was thrown, but the error was occasional on the line and not reproducible in the...

## Feature Request The Kotlin APIs lack the option to subscribe or publish to pubsub channels. See [PSUBSCRIBE](https://redis.io/commands/psubscribe/) and [SUNSUBSCRIBE](https://redis.io/commands/sunsubscribe/)

type: enhancement

As documented [here](https://github.com/redis/redis/pull/12299), to be tested against redis unstable.

type: enhancement

Add support for the command as documented [here](https://redis.io/commands/client-trackinginfo)

type: enhancement

Add support for the command as documented [here](https://redis.io/commands/cluster-myshardid)

type: enhancement

## Bug Report #### Current Behavior A PartitionSelectorException occurs under specific conditions when a Redis cluster is adding a new slave node. If the Lettuce client's periodic topology refresh coincides...

I have spring reactive project and I am using RedisReactiveCommand's mget to fetch multiple keys values together. I was iterating over number of keys to fetch data from redis using...

status: waiting-for-feedback

## Bug Report FIFO order is not respected in DefaultEndpoint#notifyChannelActive() #### Current Behavior A later write from the same user thread may be sent first ```java @Test void writeShouldGuaranteeFIFOOrder() {...