Uses of Class
org.springframework.data.redis.connection.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
Modifier and TypeMethodDescriptionreactor.core.publisher.Flux<ReactiveRedisConnection.MultiValueResponse<ReactiveStringCommands.BitFieldCommand,
Long>> ReactiveStringCommands.bitField
(org.reactivestreams.Publisher<ReactiveStringCommands.BitFieldCommand> commands) Get / Manipulate specific integer fields of varying bit widths and arbitrary non (necessary) aligned offset stored at a givenkey
.reactor.core.publisher.Flux<ReactiveRedisConnection.MultiValueResponse<ReactiveGeoCommands.GeoHashCommand,
String>> ReactiveGeoCommands.geoHash
(org.reactivestreams.Publisher<ReactiveGeoCommands.GeoHashCommand> commands) Get geohash representation of the position for one or more members.reactor.core.publisher.Flux<ReactiveRedisConnection.MultiValueResponse<ReactiveGeoCommands.GeoPosCommand,
org.springframework.data.geo.Point>> ReactiveGeoCommands.geoPos
(org.reactivestreams.Publisher<ReactiveGeoCommands.GeoPosCommand> commands) Get thePoint
representation of positions for one or more members.reactor.core.publisher.Flux<ReactiveRedisConnection.MultiValueResponse<ReactiveHashCommands.HGetCommand,
ByteBuffer>> ReactiveHashCommands.hMGet
(org.reactivestreams.Publisher<ReactiveHashCommands.HGetCommand> commands) Get values for given fields from hash at key.reactor.core.publisher.Flux<ReactiveRedisConnection.MultiValueResponse<ByteBuffer,
ByteBuffer>> ReactiveKeyCommands.keys
(org.reactivestreams.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.reactor.core.publisher.Flux<ReactiveRedisConnection.MultiValueResponse<List<ByteBuffer>,
ByteBuffer>> ReactiveStringCommands.mGet
(org.reactivestreams.Publisher<List<ByteBuffer>> keysets) Get multiple values at for keysets in batches.reactor.core.publisher.Flux<ReactiveRedisConnection.MultiValueResponse<ReactiveSetCommands.SMIsMemberCommand,
Boolean>> ReactiveSetCommands.sMIsMember
(org.reactivestreams.Publisher<ReactiveSetCommands.SMIsMemberCommand> commands) Check if set atReactiveRedisConnection.KeyCommand.getKey()
containsReactiveSetCommands.SMIsMemberCommand.getValues()
.reactor.core.publisher.Flux<ReactiveRedisConnection.MultiValueResponse<ReactiveZSetCommands.ZMScoreCommand,
Double>> ReactiveZSetCommands.zMScore
(org.reactivestreams.Publisher<ReactiveZSetCommands.ZMScoreCommand> commands) Get the scores of elements withReactiveZSetCommands.ZMScoreCommand.getValues()
from sorted set with keyReactiveRedisConnection.KeyCommand.getKey()