Uses of Class
io.lettuce.core.SortArgs
| 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 SortArgs in io.lettuce.core
Methods in io.lettuce.core that return SortArgs Modifier and Type Method Description SortArgsSortArgs. alpha()Apply lexicographically sort.static SortArgsSortArgs.Builder. alpha()Creates newSortArgssetting ALPHA.SortArgsSortArgs. asc()Apply numeric sort in ascending order.static SortArgsSortArgs.Builder. asc()Creates newSortArgssetting ASC.static SortArgsSortArgs.Builder. by(String pattern)Creates newSortArgssetting PATTERN.SortArgsSortArgs. by(String pattern)Sort keys by an external list.static SortArgsSortArgs.Builder. desc()Creates newSortArgssetting DESC.SortArgsSortArgs. desc()Apply numeric sort in descending order.static SortArgsSortArgs.Builder. get(String pattern)Creates newSortArgssetting GET.SortArgsSortArgs. get(String pattern)Retrieve external keys during sort.static SortArgsSortArgs.Builder. limit(long offset, long count)Creates newSortArgssetting LIMIT.SortArgsSortArgs. limit(long offset, long count)Limit the number of returned elements.SortArgsSortArgs. limit(Limit limit)Limit the number of returned elements.Methods in io.lettuce.core with parameters of type SortArgs Modifier and Type Method Description RedisFuture<Long>AbstractRedisAsyncCommands. sort(ValueStreamingChannel<V> channel, K key, SortArgs sortArgs)RedisFuture<List<V>>AbstractRedisAsyncCommands. sort(K key, SortArgs sortArgs)Mono<Long>AbstractRedisReactiveCommands. sort(ValueStreamingChannel<V> channel, K key, SortArgs sortArgs)Flux<V>AbstractRedisReactiveCommands. sort(K key, SortArgs sortArgs)RedisFuture<Long>AbstractRedisAsyncCommands. sortStore(K key, SortArgs sortArgs, K destination)Mono<Long>AbstractRedisReactiveCommands. sortStore(K key, SortArgs sortArgs, K destination) -
Uses of SortArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type SortArgs Modifier and Type Method Description RedisFuture<Long>RedisKeyAsyncCommands. sort(ValueStreamingChannel<V> channel, K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.RedisFuture<List<V>>RedisKeyAsyncCommands. sort(K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.RedisFuture<Long>RedisKeyAsyncCommands. sortStore(K key, SortArgs sortArgs, K destination)Sort the elements in a list, set or sorted set. -
Uses of SortArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type SortArgs Modifier and Type Method Description Mono<Long>RedisKeyReactiveCommands. sort(ValueStreamingChannel<V> channel, K key, SortArgs sortArgs)Deprecated.Flux<V>RedisKeyReactiveCommands. sort(K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.Mono<Long>RedisKeyReactiveCommands. sortStore(K key, SortArgs sortArgs, K destination)Sort the elements in a list, set or sorted set. -
Uses of SortArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type SortArgs Modifier and Type Method Description LongRedisKeyCommands. sort(ValueStreamingChannel<V> channel, K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.List<V>RedisKeyCommands. sort(K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.LongRedisKeyCommands. sortStore(K key, SortArgs sortArgs, K destination)Sort the elements in a list, set or sorted set. -
Uses of SortArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type SortArgs Modifier and Type Method Description AsyncExecutions<Long>NodeSelectionKeyAsyncCommands. sort(ValueStreamingChannel<V> channel, K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.AsyncExecutions<List<V>>NodeSelectionKeyAsyncCommands. sort(K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.AsyncExecutions<Long>NodeSelectionKeyAsyncCommands. sortStore(K key, SortArgs sortArgs, K destination)Sort the elements in a list, set or sorted set. -
Uses of SortArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type SortArgs Modifier and Type Method Description Executions<Long>NodeSelectionKeyCommands. sort(ValueStreamingChannel<V> channel, K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.Executions<List<V>>NodeSelectionKeyCommands. sort(K key, SortArgs sortArgs)Sort the elements in a list, set or sorted set.Executions<Long>NodeSelectionKeyCommands. sortStore(K key, SortArgs sortArgs, K destination)Sort the elements in a list, set or sorted set.
Publisherreturned byRedisKeyReactiveCommands.sort(K).