| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
| Modifier and Type | Method and Description |
|---|---|
LcsArgs |
LcsArgs.by(String... keys) |
LcsArgs |
LcsArgs.justLen()
Request just the length of the match for results.
|
static LcsArgs |
LcsArgs.Builder.keys(String... keys)
Creates new
LcsArgs by keys. |
LcsArgs |
LcsArgs.minMatchLen(int minMatchLen)
restrict the list of matches to the ones of a given minimal length.
|
LcsArgs |
LcsArgs.withIdx()
Request match position in each string for results.
|
LcsArgs |
LcsArgs.withMatchLen()
Request match len for results.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<StringMatchResult> |
AbstractRedisReactiveCommands.lcs(LcsArgs lcsArgs) |
RedisFuture<StringMatchResult> |
AbstractRedisAsyncCommands.lcs(LcsArgs args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<StringMatchResult> |
RedisStringAsyncCommands.lcs(LcsArgs lcsArgs)
The LCS command implements the longest common subsequence algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<StringMatchResult> |
RedisStringReactiveCommands.lcs(LcsArgs lcsArgs)
The LCS command implements the longest common subsequence algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
StringMatchResult |
RedisStringCommands.lcs(LcsArgs lcsArgs)
The LCS command implements the longest common subsequence algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<StringMatchResult> |
NodeSelectionStringAsyncCommands.lcs(LcsArgs lcsArgs)
The LCS command implements the longest common subsequence algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<StringMatchResult> |
NodeSelectionStringCommands.lcs(LcsArgs lcsArgs)
The LCS command implements the longest common subsequence algorithm.
|
Copyright © 2025 lettuce.io. All rights reserved.