Uses of Interface
org.springframework.data.redis.core.Cursor
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Connection package for Jedis library.
Connection package for Lettuce Redis client.
Core package for integrating Redis with Spring concepts.
Package providing implementations for most of the
java.util
collections on top of Redis.-
Uses of Cursor in org.springframework.data.redis.connection
Modifier and TypeMethodDescriptionDefaultedRedisConnection.hScan
(byte[] key, ScanOptions options) Deprecated.DefaultStringRedisConnection.hScan
(byte[] key, ScanOptions options) DefaultStringRedisConnection.hScan
(String key, ScanOptions options) RedisHashCommands.hScan
(byte[] key, ScanOptions options) Use aCursor
to iterate over entries in hash atkey
.StringRedisConnection.hScan
(String key, ScanOptions options) Use aCursor
to iterate over entries in hash atkey
.default Cursor<byte[]>
DefaultedRedisConnection.scan
(ScanOptions options) Deprecated.in favor ofRedisCommandsProvider.keyCommands()
.Cursor<byte[]>
DefaultStringRedisConnection.scan
(ScanOptions options) Cursor<byte[]>
RedisClusterConnection.scan
(RedisClusterNode node, ScanOptions options) Use aCursor
to iterate over keys.default Cursor<byte[]>
RedisKeyCommands.scan
(KeyScanOptions options) Use aCursor
to iterate over keys.Cursor<byte[]>
RedisKeyCommands.scan
(ScanOptions options) Use aCursor
to iterate over keys.default Cursor<byte[]>
DefaultedRedisConnection.sScan
(byte[] key, ScanOptions options) Deprecated.in favor ofRedisCommandsProvider.setCommands()
}.Cursor<byte[]>
DefaultStringRedisConnection.sScan
(byte[] key, ScanOptions options) DefaultStringRedisConnection.sScan
(String key, ScanOptions options) Cursor<byte[]>
RedisSetCommands.sScan
(byte[] key, ScanOptions options) Use aCursor
to iterate over elements in set atkey
.StringRedisConnection.sScan
(String key, ScanOptions options) Use aCursor
to iterate over elements in set atkey
.DefaultedRedisConnection.zScan
(byte[] key, ScanOptions options) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.DefaultStringRedisConnection.zScan
(byte[] key, ScanOptions options) DefaultStringRedisConnection.zScan
(String key, ScanOptions options) RedisZSetCommands.zScan
(byte[] key, ScanOptions options) Use aCursor
to iterate over elements in sorted set atkey
.StringRedisConnection.zScan
(String key, ScanOptions options) Use aCursor
to iterate over elements in sorted set atkey
. -
Uses of Cursor in org.springframework.data.redis.connection.jedis
Modifier and TypeMethodDescriptionCursor<byte[]>
JedisClusterConnection.scan
(RedisClusterNode node, ScanOptions options) -
Uses of Cursor in org.springframework.data.redis.connection.lettuce
Modifier and TypeMethodDescriptionCursor<byte[]>
LettuceClusterConnection.scan
(RedisClusterNode node, ScanOptions options) -
Uses of Cursor in org.springframework.data.redis.core
Modifier and TypeClassDescriptionclass
ConvertingCursor<S,
T> ConvertingCursor
wraps a given cursor and applies givenConverter
to items prior to returning them.class
class
ScanCursor<T>
Redis client agnosticCursor
implementation continuously loading additional results from Redis server until reaching its starting pointzero
.Modifier and TypeMethodDescriptionBoundHashOperations.scan
(ScanOptions options) Use aCursor
to iterate over entries in hash at the bound key.BoundSetOperations.scan
(ScanOptions options) Use aCursor
to iterate over entries in set atkey
.BoundZSetOperations.scan
(ScanOptions options) Use aCursor
to iterate over entries in zset at the bound key.HashOperations.scan
(H key, ScanOptions options) Use aCursor
to iterate over entries in hash atkey
.RedisOperations.scan
(ScanOptions options) Use aCursor
to iterate over keys.RedisTemplate.scan
(ScanOptions options) SetOperations.scan
(K key, ScanOptions options) Use aCursor
to iterate over entries set atkey
.ZSetOperations.scan
(K key, ScanOptions options) Use aCursor
to iterate over entries zset atkey
. -
Uses of Cursor in org.springframework.data.redis.support.collections
RedisCommandsProvider.hashCommands()
}.