Uses of Class
io.lettuce.core.StrAlgoArgs
| 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.
|
-
Uses of StrAlgoArgs in io.lettuce.core
Methods in io.lettuce.core that return StrAlgoArgs Modifier and Type Method Description StrAlgoArgsStrAlgoArgs. by(StrAlgoArgs.By by, String... keys)StrAlgoArgsStrAlgoArgs. charset(Charset charset)StrAlgoArgsStrAlgoArgs. justLen()Request just the length of the match for results.static StrAlgoArgsStrAlgoArgs.Builder. keys(String... keys)Creates newStrAlgoArgsby keys.StrAlgoArgsStrAlgoArgs. minMatchLen(int minMatchLen)restrict the list of matches to the ones of a given minimal length.static StrAlgoArgsStrAlgoArgs.Builder. strings(String... strings)Creates newStrAlgoArgsby strings.static StrAlgoArgsStrAlgoArgs.Builder. strings(Charset charset, String... strings)Creates newStrAlgoArgsby strings and charset.StrAlgoArgsStrAlgoArgs. withIdx()Request match position in each strings for results.StrAlgoArgsStrAlgoArgs. withMatchLen()Request match len for results.Methods in io.lettuce.core with parameters of type StrAlgoArgs Modifier and Type Method Description RedisFuture<StringMatchResult>AbstractRedisAsyncCommands. stralgoLcs(StrAlgoArgs args)Mono<StringMatchResult>AbstractRedisReactiveCommands. stralgoLcs(StrAlgoArgs strAlgoArgs) -
Uses of StrAlgoArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type StrAlgoArgs Modifier and Type Method Description RedisFuture<StringMatchResult>RedisStringAsyncCommands. stralgoLcs(StrAlgoArgs strAlgoArgs)The STRALGO command implements complex algorithms that operate on strings. -
Uses of StrAlgoArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type StrAlgoArgs Modifier and Type Method Description Mono<StringMatchResult>RedisStringReactiveCommands. stralgoLcs(StrAlgoArgs strAlgoArgs)The STRALGO command implements complex algorithms that operate on strings. -
Uses of StrAlgoArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type StrAlgoArgs Modifier and Type Method Description StringMatchResultRedisStringCommands. stralgoLcs(StrAlgoArgs strAlgoArgs)The STRALGO command implements complex algorithms that operate on strings. -
Uses of StrAlgoArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type StrAlgoArgs Modifier and Type Method Description AsyncExecutions<StringMatchResult>NodeSelectionStringAsyncCommands. stralgoLcs(StrAlgoArgs strAlgoArgs)The STRALGO command implements complex algorithms that operate on strings. -
Uses of StrAlgoArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type StrAlgoArgs Modifier and Type Method Description Executions<StringMatchResult>NodeSelectionStringCommands. stralgoLcs(StrAlgoArgs strAlgoArgs)The STRALGO command implements complex algorithms that operate on strings.