Uses of Class
io.lettuce.core.LPosArgs
| 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 LPosArgs in io.lettuce.core
Methods in io.lettuce.core that return LPosArgs Modifier and Type Method Description static LPosArgsLPosArgs.Builder. empty()Creates new emptyLPosArgs.static LPosArgsLPosArgs.Builder. maxlen(long count)Creates newLPosArgsand setting MAXLEN.LPosArgsLPosArgs. maxlen(long maxlen)Limit list scanning tomaxlenentries.static LPosArgsLPosArgs.Builder. rank(long rank)Creates newLPosArgsand setting RANK.LPosArgsLPosArgs. rank(long rank)Specify the rank of the first element to return, in case there are multiple matches.Methods in io.lettuce.core with parameters of type LPosArgs Modifier and Type Method Description RedisFuture<List<Long>>AbstractRedisAsyncCommands. lpos(K key, V value, int count, LPosArgs args)RedisFuture<Long>AbstractRedisAsyncCommands. lpos(K key, V value, LPosArgs args)Flux<Long>AbstractRedisReactiveCommands. lpos(K key, V value, int count, LPosArgs args)Mono<Long>AbstractRedisReactiveCommands. lpos(K key, V value, LPosArgs args) -
Uses of LPosArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type LPosArgs Modifier and Type Method Description RedisFuture<List<Long>>RedisListAsyncCommands. lpos(K key, V value, int count, LPosArgs args)Return the index of matching elements inside a Redis list using theCOUNToption.RedisFuture<Long>RedisListAsyncCommands. lpos(K key, V value, LPosArgs args)Return the index of matching elements inside a Redis list. -
Uses of LPosArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type LPosArgs Modifier and Type Method Description Flux<Long>RedisListReactiveCommands. lpos(K key, V value, int count, LPosArgs args)Return the index of matching elements inside a Redis list using theCOUNToption.Mono<Long>RedisListReactiveCommands. lpos(K key, V value, LPosArgs args)Return the index of matching elements inside a Redis list. -
Uses of LPosArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type LPosArgs Modifier and Type Method Description List<Long>RedisListCommands. lpos(K key, V value, int count, LPosArgs args)Return the index of matching elements inside a Redis list using theCOUNToption.LongRedisListCommands. lpos(K key, V value, LPosArgs args)Return the index of matching elements inside a Redis list. -
Uses of LPosArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type LPosArgs Modifier and Type Method Description AsyncExecutions<List<Long>>NodeSelectionListAsyncCommands. lpos(K key, V value, int count, LPosArgs args)Return the index of matching elements inside a Redis list using theCOUNToption.AsyncExecutions<Long>NodeSelectionListAsyncCommands. lpos(K key, V value, LPosArgs args)Return the index of matching elements inside a Redis list. -
Uses of LPosArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type LPosArgs Modifier and Type Method Description Executions<List<Long>>NodeSelectionListCommands. lpos(K key, V value, int count, LPosArgs args)Return the index of matching elements inside a Redis list using theCOUNToption.Executions<Long>NodeSelectionListCommands. lpos(K key, V value, LPosArgs args)Return the index of matching elements inside a Redis list.