Uses of Class
org.springframework.data.redis.connection.ReactiveRedisConnection.ByteBufferResponse
Packages that use ReactiveRedisConnection.ByteBufferResponse
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
-
Uses of ReactiveRedisConnection.ByteBufferResponse in org.springframework.data.redis.connection
Subclasses of ReactiveRedisConnection.ByteBufferResponse in org.springframework.data.redis.connectionModifier and TypeClassDescriptionstatic classReactiveRedisConnection.CommandResponseimplementation forByteBufferresponses for absent keys.Methods in org.springframework.data.redis.connection that return types with arguments of type ReactiveRedisConnection.ByteBufferResponseModifier and TypeMethodDescriptionReactiveListCommands.bLMove(Publisher<ReactiveListCommands.BLMoveCommand> commands) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.ReactiveListCommands.bRPopLPush(Publisher<ReactiveListCommands.BRPopLPushCommand> commands) Remove the last element from list atReactiveRedisConnection.KeyCommand.getKey(), append it toReactiveListCommands.BRPopLPushCommand.getDestination()and return its value.ReactiveStringCommands.get(Publisher<ReactiveRedisConnection.KeyCommand> keys) Get elements one by one.ReactiveStringCommands.getDel(Publisher<ReactiveRedisConnection.KeyCommand> commands) Return the value atkeyand delete the key.ReactiveStringCommands.getEx(Publisher<ReactiveStringCommands.GetExCommand> commands) Return the value atkeyand expire the key by applyingExpiration.ReactiveStringCommands.getRange(Publisher<ReactiveRedisConnection.RangeCommand> commands) Get a substring of value of key between start and end.ReactiveStringCommands.getSet(Publisher<ReactiveStringCommands.SetCommand> commands) Set value for key and return the existing value one by one.ReactiveListCommands.lIndex(Publisher<ReactiveListCommands.LIndexCommand> commands) Get element atReactiveListCommands.LIndexCommand.getIndex()form list atReactiveRedisConnection.KeyCommand.getKey().ReactiveListCommands.lMove(Publisher<? extends ReactiveListCommands.LMoveCommand> commands) Atomically returns and removes the first/last element (head/tail depending on thefromargument) of the list stored atsourceKey, and pushes the element at the first/last element (head/tail depending on thetoargument) of the list stored atdestinationKey.ReactiveListCommands.pop(Publisher<ReactiveListCommands.PopCommand> commands) Removes and returns last element in list stored atReactiveRedisConnection.KeyCommand.getKey()ReactiveListCommands.rPopLPush(Publisher<ReactiveListCommands.RPopLPushCommand> commands) Remove the last element from list atReactiveRedisConnection.KeyCommand.getKey(), append it toReactiveListCommands.RPopLPushCommand.getDestination()and return its value.ReactiveStringCommands.setGet(Publisher<ReactiveStringCommands.SetCommand> commands) Set each and every item separately by invokingReactiveStringCommands.SetCommand.ReactiveSetCommands.sPop(Publisher<ReactiveRedisConnection.KeyCommand> commands) Remove and return a random member from set atReactiveRedisConnection.KeyCommand.getKey()