Uses of Class
io.lettuce.core.ScanIterator
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
-
Uses of ScanIterator in io.lettuce.core
Methods in io.lettuce.core that return ScanIterator Modifier and Type Method Description static <K, V> ScanIterator<KeyValue<K,V>>ScanIterator. hscan(RedisHashCommands<K,V> commands, K key)Sequentially iterate over entries in a hash identified bykey.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> ScanIterator<K>ScanIterator. scan(RedisKeyCommands<K,V> commands)Sequentially iterate over keys in the keyspace.static <K, V> ScanIterator<K>ScanIterator. scan(RedisKeyCommands<K,V> commands, ScanArgs scanArgs)Sequentially iterate over keys in the keyspace.static <K, V> ScanIterator<V>ScanIterator. sscan(RedisSetCommands<K,V> commands, K key)Sequentially iterate over elements in a set identified bykey.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> ScanIterator<ScoredValue<V>>ScanIterator. zscan(RedisSortedSetCommands<K,V> commands, K key)Sequentially iterate over scored values in a sorted set identified bykey.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.