Uses of Class
org.springframework.data.redis.core.ScanOptions
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 ScanOptions in org.springframework.data.redis.connection
Modifier and TypeMethodDescriptionReactiveRedisConnection.KeyScanCommand.getOptions()
Get theScanOptions
to apply.Modifier and TypeMethodDescriptionDefaultedRedisConnection.hScan
(byte[] key, ScanOptions options) Deprecated.DefaultStringRedisConnection.hScan
(byte[] key, ScanOptions options) DefaultStringRedisConnection.hScan
(String key, ScanOptions options) default reactor.core.publisher.Flux<Map.Entry<ByteBuffer,
ByteBuffer>> ReactiveHashCommands.hScan
(ByteBuffer 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) reactor.core.publisher.Flux<ByteBuffer>
ReactiveKeyCommands.scan
(ScanOptions options) Use aFlux
to iterate over keys.Cursor<byte[]>
RedisClusterConnection.scan
(RedisClusterNode node, ScanOptions 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) default reactor.core.publisher.Flux<ByteBuffer>
ReactiveSetCommands.sScan
(ByteBuffer 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
.ReactiveRedisConnection.KeyScanCommand.withOptions
(ScanOptions options) AppliesScanOptions
.DefaultedRedisConnection.zScan
(byte[] key, ScanOptions options) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.DefaultStringRedisConnection.zScan
(byte[] key, ScanOptions options) DefaultStringRedisConnection.zScan
(String key, ScanOptions options) default reactor.core.publisher.Flux<Tuple>
ReactiveZSetCommands.zScan
(ByteBuffer 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 ScanOptions in org.springframework.data.redis.connection.jedis
Modifier and TypeMethodDescriptionCursor<byte[]>
JedisClusterConnection.scan
(RedisClusterNode node, ScanOptions options) -
Uses of ScanOptions in org.springframework.data.redis.connection.lettuce
Modifier and TypeMethodDescriptionCursor<byte[]>
LettuceClusterConnection.scan
(RedisClusterNode node, ScanOptions options) -
Uses of ScanOptions in org.springframework.data.redis.core
Modifier and TypeFieldDescriptionstatic ScanOptions
ScanOptions.NONE
Constant to apply defaultScanOptions
without setting a limit or matching a pattern.Modifier and TypeMethodDescriptionScanOptions.ScanOptionsBuilder.build()
Builds a newScanOptions
objects.Modifier and TypeMethodDescriptionprotected abstract ScanIteration<T>
KeyBoundCursor.doScan
(byte[] key, Cursor.CursorId cursorId, ScanOptions options) protected ScanIteration<T>
KeyBoundCursor.doScan
(long cursorId, ScanOptions options) protected ScanIteration<T>
KeyBoundCursor.doScan
(Cursor.CursorId cursorId, ScanOptions options) protected ScanIteration<T>
ScanCursor.doScan
(long cursorId, ScanOptions options) Deprecated.since 3.3.0, cursorId, can exceedLong.MAX_VALUE
.protected ScanIteration<T>
ScanCursor.doScan
(Cursor.CursorId cursorId, ScanOptions options) Performs the actual scan command using the native client implementation.BoundHashOperations.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
.ReactiveHashOperations.scan
(H key, ScanOptions options) reactor.core.publisher.Flux<K>
ReactiveRedisOperations.scan
(ScanOptions options) Use aFlux
to iterate over keys.reactor.core.publisher.Flux<K>
ReactiveRedisTemplate.scan
(ScanOptions options) reactor.core.publisher.Flux<V>
ReactiveSetOperations.scan
(K key, ScanOptions options) reactor.core.publisher.Flux<ZSetOperations.TypedTuple<V>>
ReactiveZSetOperations.scan
(K key, ScanOptions options) 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
.ModifierConstructorDescriptionKeyBoundCursor
(byte[] key, long cursorId, ScanOptions options) Deprecated.since 3.3.0 - UseKeyBoundCursor(byte[], CursorId, ScanOptions)
instead.KeyBoundCursor
(byte[] key, Cursor.CursorId cursorId, ScanOptions options) Crates newScanCursor
ScanCursor
(long cursorId, ScanOptions options) Deprecated.since 3.3.0 - UseScanCursor(CursorId, ScanOptions)
instead.ScanCursor
(Cursor.CursorId cursorId, ScanOptions options) Crates newScanCursor
ScanCursor
(ScanOptions options) Crates newScanCursor
with an initial cursor. -
Uses of ScanOptions in org.springframework.data.redis.support.collections
Modifier and TypeMethodDescriptionDefaultRedisSet.scan
(ScanOptions options) DefaultRedisZSet.scan
(ScanOptions options)
RedisCommandsProvider.hashCommands()
}.