Uses of Class
org.springframework.data.redis.core.ScanOptions
Packages that use 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
Methods in org.springframework.data.redis.connection that return ScanOptionsModifier and TypeMethodDescriptionReactiveRedisConnection.KeyScanCommand.getOptions()Get theScanOptionsto apply.Methods in org.springframework.data.redis.connection with parameters of type ScanOptionsModifier 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 aCursorto iterate over entries in hash atkey.StringRedisConnection.hScan(String key, ScanOptions options) Use aCursorto 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 aFluxto iterate over keys.Cursor<byte[]>RedisClusterConnection.scan(RedisClusterNode node, ScanOptions options) Use aCursorto iterate over keys.Cursor<byte[]>RedisKeyCommands.scan(ScanOptions options) Use aCursorto 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 aCursorto iterate over elements in set atkey.StringRedisConnection.sScan(String key, ScanOptions options) Use aCursorto 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 aCursorto iterate over elements in sorted set atkey.StringRedisConnection.zScan(String key, ScanOptions options) Use aCursorto iterate over elements in sorted set atkey. -
Uses of ScanOptions in org.springframework.data.redis.connection.jedis
Methods in org.springframework.data.redis.connection.jedis with parameters of type ScanOptionsModifier and TypeMethodDescriptionCursor<byte[]>JedisClusterConnection.scan(RedisClusterNode node, ScanOptions options) -
Uses of ScanOptions in org.springframework.data.redis.connection.lettuce
Methods in org.springframework.data.redis.connection.lettuce with parameters of type ScanOptionsModifier and TypeMethodDescriptionCursor<byte[]>LettuceClusterConnection.scan(RedisClusterNode node, ScanOptions options) -
Uses of ScanOptions in org.springframework.data.redis.core
Subclasses of ScanOptions in org.springframework.data.redis.coreFields in org.springframework.data.redis.core declared as ScanOptionsModifier and TypeFieldDescriptionstatic ScanOptionsScanOptions.NONEConstant to apply defaultScanOptionswithout setting a limit or matching a pattern.Methods in org.springframework.data.redis.core that return ScanOptionsModifier and TypeMethodDescriptionScanOptions.ScanOptionsBuilder.build()Builds a newScanOptionsobjects.Methods in org.springframework.data.redis.core with parameters of type ScanOptionsModifier 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 aCursorto iterate over entries in hash at the bound key.BoundSetOperations.scan(ScanOptions options) Use aCursorto iterate over entries in set atkey.BoundZSetOperations.scan(ScanOptions options) Use aCursorto iterate over entries in zset at the bound key.HashOperations.scan(H key, ScanOptions options) Use aCursorto iterate over entries in hash atkey.ReactiveHashOperations.scan(H key, ScanOptions options) reactor.core.publisher.Flux<K>ReactiveRedisOperations.scan(ScanOptions options) Use aFluxto 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 aCursorto iterate over keys.RedisTemplate.scan(ScanOptions options) SetOperations.scan(K key, ScanOptions options) Use aCursorto iterate over entries set atkey.ZSetOperations.scan(K key, ScanOptions options) Use aCursorto iterate over entries zset atkey.Constructors in org.springframework.data.redis.core with parameters of type ScanOptionsModifierConstructorDescriptionKeyBoundCursor(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 newScanCursorScanCursor(long cursorId, ScanOptions options) Deprecated.since 3.3.0 - UseScanCursor(CursorId, ScanOptions)instead.ScanCursor(Cursor.CursorId cursorId, ScanOptions options) Crates newScanCursorScanCursor(ScanOptions options) Crates newScanCursorwith an initial cursor. -
Uses of ScanOptions in org.springframework.data.redis.support.collections
Methods in org.springframework.data.redis.support.collections with parameters of type ScanOptionsModifier and TypeMethodDescriptionDefaultRedisSet.scan(ScanOptions options) DefaultRedisZSet.scan(ScanOptions options)
RedisCommandsProvider.hashCommands()}.