Uses of Class
io.lettuce.core.ScanArgs
| 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 |
Client for Redis Cluster, see
RedisClusterClient. |
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.reactive |
Redis Cluster API for reactive command execution.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
-
Uses of ScanArgs in io.lettuce.core
Subclasses of ScanArgs in io.lettuce.core Modifier and Type Class Description classKeyScanArgsArgument list builder for the RedisSCANcommand.Methods in io.lettuce.core that return ScanArgs Modifier and Type Method Description static ScanArgsScanArgs.Builder. limit(long count)Creates newScanArgswith LIMIT set.ScanArgsScanArgs. limit(long count)Limit the scan by countScanArgsScanArgs. match(byte[] match)Set the match filter.ScanArgsScanArgs. match(String match)Set the match filter.ScanArgsScanArgs. match(String match, Charset charset)Set the match filter along the givenCharset.static ScanArgsScanArgs.Builder. matches(byte[] matches)Creates newScanArgswith MATCH set.static ScanArgsScanArgs.Builder. matches(String matches)Creates newScanArgswith MATCH set.Methods in io.lettuce.core with parameters of type ScanArgs Modifier and Type Method Description RedisFuture<StreamScanCursor>AbstractRedisAsyncCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanArgs scanArgs)RedisFuture<StreamScanCursor>AbstractRedisAsyncCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)RedisFuture<MapScanCursor<K,V>>AbstractRedisAsyncCommands. hscan(K key, ScanArgs scanArgs)RedisFuture<MapScanCursor<K,V>>AbstractRedisAsyncCommands. hscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Mono<StreamScanCursor>AbstractRedisReactiveCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanArgs scanArgs)Mono<StreamScanCursor>AbstractRedisReactiveCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Mono<MapScanCursor<K,V>>AbstractRedisReactiveCommands. hscan(K key, ScanArgs scanArgs)Mono<MapScanCursor<K,V>>AbstractRedisReactiveCommands. hscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)static <K, V> ScanIterator<KeyValue<K,V>>ScanIterator. hscan(RedisHashCommands<K,V> commands, K key, ScanArgs scanArgs)Sequentially iterate over entries in a hash identified bykey.static <K, V> Flux<KeyValue<K,V>>ScanStream. hscan(RedisHashReactiveCommands<K,V> commands, K key, ScanArgs scanArgs)Sequentially iterate over entries in a hash identified bykey.RedisFuture<StreamScanCursor>AbstractRedisAsyncCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)RedisFuture<StreamScanCursor>AbstractRedisAsyncCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)RedisFuture<KeyScanCursor<K>>AbstractRedisAsyncCommands. scan(ScanArgs scanArgs)RedisFuture<KeyScanCursor<K>>AbstractRedisAsyncCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Mono<StreamScanCursor>AbstractRedisReactiveCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Mono<StreamScanCursor>AbstractRedisReactiveCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Mono<KeyScanCursor<K>>AbstractRedisReactiveCommands. scan(ScanArgs scanArgs)Mono<KeyScanCursor<K>>AbstractRedisReactiveCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)static <K, V> ScanIterator<K>ScanIterator. scan(RedisKeyCommands<K,V> commands, ScanArgs scanArgs)Sequentially iterate over keys in the keyspace.static <K, V> Flux<K>ScanStream. scan(RedisKeyReactiveCommands<K,V> commands, ScanArgs scanArgs)Sequentially iterate over keys in the keyspace.RedisFuture<StreamScanCursor>AbstractRedisAsyncCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)RedisFuture<StreamScanCursor>AbstractRedisAsyncCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)RedisFuture<ValueScanCursor<V>>AbstractRedisAsyncCommands. sscan(K key, ScanArgs scanArgs)RedisFuture<ValueScanCursor<V>>AbstractRedisAsyncCommands. sscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Mono<StreamScanCursor>AbstractRedisReactiveCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Mono<StreamScanCursor>AbstractRedisReactiveCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Mono<ValueScanCursor<V>>AbstractRedisReactiveCommands. sscan(K key, ScanArgs scanArgs)Mono<ValueScanCursor<V>>AbstractRedisReactiveCommands. sscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)static <K, V> ScanIterator<V>ScanIterator. sscan(RedisSetCommands<K,V> commands, K key, ScanArgs scanArgs)Sequentially iterate over elements in a set identified bykey.static <K, V> Flux<V>ScanStream. sscan(RedisSetReactiveCommands<K,V> commands, K key, ScanArgs scanArgs)Sequentially iterate over elements in a set identified bykey.RedisFuture<StreamScanCursor>AbstractRedisAsyncCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)RedisFuture<StreamScanCursor>AbstractRedisAsyncCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)RedisFuture<ScoredValueScanCursor<V>>AbstractRedisAsyncCommands. zscan(K key, ScanArgs scanArgs)RedisFuture<ScoredValueScanCursor<V>>AbstractRedisAsyncCommands. zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Mono<StreamScanCursor>AbstractRedisReactiveCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Mono<StreamScanCursor>AbstractRedisReactiveCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Mono<ScoredValueScanCursor<V>>AbstractRedisReactiveCommands. zscan(K key, ScanArgs scanArgs)Mono<ScoredValueScanCursor<V>>AbstractRedisReactiveCommands. zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)static <K, V> ScanIterator<ScoredValue<V>>ScanIterator. zscan(RedisSortedSetCommands<K,V> commands, K key, ScanArgs scanArgs)Sequentially iterate over scored values in a sorted set identified bykey.static <K, V> Flux<ScoredValue<V>>ScanStream. zscan(RedisSortedSetReactiveCommands<K,V> commands, K key, ScanArgs scanArgs)Sequentially iterate over elements in a set identified bykey. -
Uses of ScanArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type ScanArgs Modifier and Type Method Description RedisFuture<StreamScanCursor>RedisHashAsyncCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.RedisFuture<StreamScanCursor>RedisHashAsyncCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.RedisFuture<MapScanCursor<K,V>>RedisHashAsyncCommands. hscan(K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.RedisFuture<MapScanCursor<K,V>>RedisHashAsyncCommands. hscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.RedisFuture<StreamScanCursor>RedisKeyAsyncCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Incrementally iterate the keys space.RedisFuture<StreamScanCursor>RedisKeyAsyncCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.RedisFuture<KeyScanCursor<K>>RedisKeyAsyncCommands. scan(ScanArgs scanArgs)Incrementally iterate the keys space.RedisFuture<KeyScanCursor<K>>RedisKeyAsyncCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.RedisFuture<StreamScanCursor>RedisSetAsyncCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Incrementally iterate Set elements.RedisFuture<StreamScanCursor>RedisSetAsyncCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.RedisFuture<ValueScanCursor<V>>RedisSetAsyncCommands. sscan(K key, ScanArgs scanArgs)Incrementally iterate Set elements.RedisFuture<ValueScanCursor<V>>RedisSetAsyncCommands. sscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.RedisFuture<StreamScanCursor>RedisSortedSetAsyncCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.RedisFuture<StreamScanCursor>RedisSortedSetAsyncCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.RedisFuture<ScoredValueScanCursor<V>>RedisSortedSetAsyncCommands. zscan(K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.RedisFuture<ScoredValueScanCursor<V>>RedisSortedSetAsyncCommands. zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores. -
Uses of ScanArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type ScanArgs Modifier and Type Method Description Mono<StreamScanCursor>RedisHashReactiveCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanArgs scanArgs)Deprecated.Mono<StreamScanCursor>RedisHashReactiveCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Deprecated.since 6.0 in favor of consuming large results through thePublisherreturned byRedisHashReactiveCommands.hscan(K).Mono<MapScanCursor<K,V>>RedisHashReactiveCommands. hscan(K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.Mono<MapScanCursor<K,V>>RedisHashReactiveCommands. hscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.Mono<StreamScanCursor>RedisKeyReactiveCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Deprecated.since 6.0 in favor of consuming large results through thePublisherreturned byRedisKeyReactiveCommands.scan().Mono<StreamScanCursor>RedisKeyReactiveCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Deprecated.since 6.0 in favor of consuming large results through thePublisherreturned byRedisKeyReactiveCommands.scan().Mono<KeyScanCursor<K>>RedisKeyReactiveCommands. scan(ScanArgs scanArgs)Incrementally iterate the keys space.Mono<KeyScanCursor<K>>RedisKeyReactiveCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.Mono<StreamScanCursor>RedisSetReactiveCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Deprecated.since 6.0 in favor of consuming large results through thePublisherreturned byRedisSetReactiveCommands.sscan(K).Mono<StreamScanCursor>RedisSetReactiveCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Deprecated.since 6.0 in favor of consuming large results through thePublisherreturned byRedisSetReactiveCommands.sscan(K).Mono<ValueScanCursor<V>>RedisSetReactiveCommands. sscan(K key, ScanArgs scanArgs)Incrementally iterate Set elements.Mono<ValueScanCursor<V>>RedisSetReactiveCommands. sscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.Mono<StreamScanCursor>RedisSortedSetReactiveCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Deprecated.since 6.0 in favor of consuming large results through thePublisherreturned byRedisSortedSetReactiveCommands.zscan(K).Mono<StreamScanCursor>RedisSortedSetReactiveCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Deprecated.since 6.0 in favor of consuming large results through thePublisherreturned byRedisSortedSetReactiveCommands.zscan(K).Mono<ScoredValueScanCursor<V>>RedisSortedSetReactiveCommands. zscan(K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.Mono<ScoredValueScanCursor<V>>RedisSortedSetReactiveCommands. zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores. -
Uses of ScanArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type ScanArgs Modifier and Type Method Description StreamScanCursorRedisHashCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.StreamScanCursorRedisHashCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.MapScanCursor<K,V>RedisHashCommands. hscan(K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.MapScanCursor<K,V>RedisHashCommands. hscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.StreamScanCursorRedisKeyCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Incrementally iterate the keys space.StreamScanCursorRedisKeyCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.KeyScanCursor<K>RedisKeyCommands. scan(ScanArgs scanArgs)Incrementally iterate the keys space.KeyScanCursor<K>RedisKeyCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.StreamScanCursorRedisSetCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Incrementally iterate Set elements.StreamScanCursorRedisSetCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.ValueScanCursor<V>RedisSetCommands. sscan(K key, ScanArgs scanArgs)Incrementally iterate Set elements.ValueScanCursor<V>RedisSetCommands. sscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.StreamScanCursorRedisSortedSetCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.StreamScanCursorRedisSortedSetCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.ScoredValueScanCursor<V>RedisSortedSetCommands. zscan(K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.ScoredValueScanCursor<V>RedisSortedSetCommands. zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores. -
Uses of ScanArgs in io.lettuce.core.cluster
Methods in io.lettuce.core.cluster with parameters of type ScanArgs Modifier and Type Method Description RedisFuture<StreamScanCursor>RedisAdvancedClusterAsyncCommandsImpl. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)RedisFuture<StreamScanCursor>RedisAdvancedClusterAsyncCommandsImpl. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)RedisFuture<KeyScanCursor<K>>RedisAdvancedClusterAsyncCommandsImpl. scan(ScanArgs scanArgs)RedisFuture<KeyScanCursor<K>>RedisAdvancedClusterAsyncCommandsImpl. scan(ScanCursor scanCursor, ScanArgs scanArgs)Mono<StreamScanCursor>RedisAdvancedClusterReactiveCommandsImpl. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Mono<StreamScanCursor>RedisAdvancedClusterReactiveCommandsImpl. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Mono<KeyScanCursor<K>>RedisAdvancedClusterReactiveCommandsImpl. scan(ScanArgs scanArgs)Mono<KeyScanCursor<K>>RedisAdvancedClusterReactiveCommandsImpl. scan(ScanCursor scanCursor, ScanArgs scanArgs) -
Uses of ScanArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type ScanArgs Modifier and Type Method Description AsyncExecutions<StreamScanCursor>NodeSelectionHashAsyncCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.AsyncExecutions<StreamScanCursor>NodeSelectionHashAsyncCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.AsyncExecutions<MapScanCursor<K,V>>NodeSelectionHashAsyncCommands. hscan(K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.AsyncExecutions<MapScanCursor<K,V>>NodeSelectionHashAsyncCommands. hscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.AsyncExecutions<StreamScanCursor>NodeSelectionKeyAsyncCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Incrementally iterate the keys space.AsyncExecutions<StreamScanCursor>NodeSelectionKeyAsyncCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.AsyncExecutions<KeyScanCursor<K>>NodeSelectionKeyAsyncCommands. scan(ScanArgs scanArgs)Incrementally iterate the keys space.AsyncExecutions<KeyScanCursor<K>>NodeSelectionKeyAsyncCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.RedisFuture<StreamScanCursor>RedisAdvancedClusterAsyncCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.RedisFuture<StreamScanCursor>RedisAdvancedClusterAsyncCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.RedisFuture<KeyScanCursor<K>>RedisAdvancedClusterAsyncCommands. scan(ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.RedisFuture<KeyScanCursor<K>>RedisAdvancedClusterAsyncCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.AsyncExecutions<StreamScanCursor>NodeSelectionSetAsyncCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Incrementally iterate Set elements.AsyncExecutions<StreamScanCursor>NodeSelectionSetAsyncCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.AsyncExecutions<ValueScanCursor<V>>NodeSelectionSetAsyncCommands. sscan(K key, ScanArgs scanArgs)Incrementally iterate Set elements.AsyncExecutions<ValueScanCursor<V>>NodeSelectionSetAsyncCommands. sscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.AsyncExecutions<StreamScanCursor>NodeSelectionSortedSetAsyncCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.AsyncExecutions<StreamScanCursor>NodeSelectionSortedSetAsyncCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.AsyncExecutions<ScoredValueScanCursor<V>>NodeSelectionSortedSetAsyncCommands. zscan(K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.AsyncExecutions<ScoredValueScanCursor<V>>NodeSelectionSortedSetAsyncCommands. zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores. -
Uses of ScanArgs in io.lettuce.core.cluster.api.reactive
Methods in io.lettuce.core.cluster.api.reactive with parameters of type ScanArgs Modifier and Type Method Description Mono<StreamScanCursor>RedisAdvancedClusterReactiveCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.Mono<StreamScanCursor>RedisAdvancedClusterReactiveCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.Mono<KeyScanCursor<K>>RedisAdvancedClusterReactiveCommands. scan(ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.Mono<KeyScanCursor<K>>RedisAdvancedClusterReactiveCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster. -
Uses of ScanArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type ScanArgs Modifier and Type Method Description Executions<StreamScanCursor>NodeSelectionHashCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.Executions<StreamScanCursor>NodeSelectionHashCommands. hscan(KeyValueStreamingChannel<K,V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.Executions<MapScanCursor<K,V>>NodeSelectionHashCommands. hscan(K key, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.Executions<MapScanCursor<K,V>>NodeSelectionHashCommands. hscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate hash fields and associated values.Executions<StreamScanCursor>NodeSelectionKeyCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Incrementally iterate the keys space.Executions<StreamScanCursor>NodeSelectionKeyCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.Executions<KeyScanCursor<K>>NodeSelectionKeyCommands. scan(ScanArgs scanArgs)Incrementally iterate the keys space.Executions<KeyScanCursor<K>>NodeSelectionKeyCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space.StreamScanCursorRedisAdvancedClusterCommands. scan(KeyStreamingChannel<K> channel, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.StreamScanCursorRedisAdvancedClusterCommands. scan(KeyStreamingChannel<K> channel, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.KeyScanCursor<K>RedisAdvancedClusterCommands. scan(ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.KeyScanCursor<K>RedisAdvancedClusterCommands. scan(ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate the keys space over the whole Cluster.Executions<StreamScanCursor>NodeSelectionSetCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Incrementally iterate Set elements.Executions<StreamScanCursor>NodeSelectionSetCommands. sscan(ValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.Executions<ValueScanCursor<V>>NodeSelectionSetCommands. sscan(K key, ScanArgs scanArgs)Incrementally iterate Set elements.Executions<ValueScanCursor<V>>NodeSelectionSetCommands. sscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate Set elements.Executions<StreamScanCursor>NodeSelectionSortedSetCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.Executions<StreamScanCursor>NodeSelectionSortedSetCommands. zscan(ScoredValueStreamingChannel<V> channel, K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.Executions<ScoredValueScanCursor<V>>NodeSelectionSortedSetCommands. zscan(K key, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.Executions<ScoredValueScanCursor<V>>NodeSelectionSortedSetCommands. zscan(K key, ScanCursor scanCursor, ScanArgs scanArgs)Incrementally iterate sorted sets elements and associated scores.
Publisherreturned byRedisHashReactiveCommands.hscan(K).