Uses of Class
org.springframework.data.redis.connection.ReactiveRedisConnection.MultiValueResponse
Packages that use ReactiveRedisConnection.MultiValueResponse
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
-
Uses of ReactiveRedisConnection.MultiValueResponse in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return types with arguments of type ReactiveRedisConnection.MultiValueResponseModifier and TypeMethodDescriptionReactiveStringCommands.bitField
(Publisher<ReactiveStringCommands.BitFieldCommand> commands) Get / Manipulate specific integer fields of varying bit widths and arbitrary non (necessary) aligned offset stored at a givenkey
.ReactiveGeoCommands.geoHash
(Publisher<ReactiveGeoCommands.GeoHashCommand> commands) Get geohash representation of the position for one or more members.ReactiveGeoCommands.geoPos
(Publisher<ReactiveGeoCommands.GeoPosCommand> commands) Get thePoint
representation of positions for one or more members.ReactiveHashCommands.hMGet
(Publisher<ReactiveHashCommands.HGetCommand> commands) Get values for given fields from hash at key.ReactiveKeyCommands.keys
(Publisher<ByteBuffer> patterns) Find all keys matching the given pattern.
It is recommended to useReactiveKeyCommands.scan(ScanOptions)
to iterate over the keyspace asReactiveKeyCommands.keys(Publisher)
is a non-interruptible and expensive Redis operation.ReactiveStringCommands.mGet
(Publisher<List<ByteBuffer>> keysets) Get multiple values at for keysets in batches.ReactiveSetCommands.sMIsMember
(Publisher<ReactiveSetCommands.SMIsMemberCommand> commands) Check if set atReactiveRedisConnection.KeyCommand.getKey()
containsReactiveSetCommands.SMIsMemberCommand.getValues()
.ReactiveZSetCommands.zMScore
(Publisher<ReactiveZSetCommands.ZMScoreCommand> commands) Get the scores of elements withReactiveZSetCommands.ZMScoreCommand.getValues()
from sorted set with keyReactiveRedisConnection.KeyCommand.getKey()