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 When establishing a connection Lettuce attempts to negotiate the protocol version. The current implementation only checks for "-ERR" and "missing" indicating the hello command is missing. However...

## Feature Request #### Is your feature request related to a problem? Please describe This will be a performance improvement for all operations #### Describe the solution you'd like Less...

### Discussed in https://github.com/lettuce-io/lettuce-core/discussions/2167 Originally posted by **shadymohs** July 28, 2022 Dear Sir/Madam, I used to connect to Redis using spring boot 2.0.5.RELEASE that has dependency for lettuce 5.0.5.RELEASE, and...

status: waiting-for-feedback

## Bug Report #### Current Behavior if the nextSpan(context) call in writeSingleCommand method throws an Exception and the lettuce reconect logic call selectAsync(db), it will loop forever. #### Expected behavior/code...

PR goal is to decrease plain string manipulations to build kotlin API code and provide more safety while generating code. Make sure that: - [x] You have read the [contribution...

## Bug Report INFO command parsing inside NodeTopologyView throws when encountering '\\' characters due to the use of the Java Property parser. This happens when using some Redis on Windows...

INFO command parsing inside NodeTopologyView throws when encountering '\\' characters due to the use of the Java Property parser. This happens when using some Redis on Windows forks due to...

redis: password: # Redis服务器连接密码(默认为空) timeout: 3000ms # 连接超时时间 lettuce: pool: max-active: 200 # 连接池最大连接数 max-idle: 5 # 连接池最大空闲连接数 min-idle: 0 # 连接池最小空闲连接数 max-wait: -1ms # 连接池最大阻塞等待时间,负值表示没有限制 cluster: nodes: # #...

status: waiting-for-feedback

## Feature Request The doc says ``` * Discover cluster nodes from topology and use the discovered nodes as source for the cluster topology. Using dynamic * refresh will query...

## Feature Request `pingBeforeActivateConnection` has a vague explanation of why we need this. In most cases a new established should be fine and there is no need to check it....