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 thePointrepresentation of positions for one or more members.ReactiveHashCommands.hGetDel(Publisher<ReactiveHashCommands.HGetDelCommand> commands) Get and delete the value of one or more fields from hash at key.ReactiveHashCommands.hGetEx(Publisher<ReactiveHashCommands.HGetExCommand> commands) Get the value of one or more fields from hash at key and optionally set expiration time or time-to-live (TTL) for given fields.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()