Uses of Class
org.springframework.data.redis.connection.ReactiveKeyCommands.RenameCommand
Packages that use ReactiveKeyCommands.RenameCommand
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
- 
Uses of ReactiveKeyCommands.RenameCommand in org.springframework.data.redis.connectionMethods in org.springframework.data.redis.connection that return ReactiveKeyCommands.RenameCommandModifier and TypeMethodDescriptionReactiveKeyCommands.RenameCommand.key(ByteBuffer key) Creates a newReactiveKeyCommands.RenameCommandgiven akey.ReactiveKeyCommands.RenameCommand.to(ByteBuffer newKey) Applies the newKey.Methods in org.springframework.data.redis.connection that return types with arguments of type ReactiveKeyCommands.RenameCommandModifier and TypeMethodDescriptionReactiveKeyCommands.rename(Publisher<ReactiveKeyCommands.RenameCommand> command) Rename key oldKey to newKey.ReactiveKeyCommands.renameNX(Publisher<ReactiveKeyCommands.RenameCommand> command) Rename key oldKey to newKey only if newKey does not exist.Method parameters in org.springframework.data.redis.connection with type arguments of type ReactiveKeyCommands.RenameCommandModifier and TypeMethodDescriptionReactiveKeyCommands.rename(Publisher<ReactiveKeyCommands.RenameCommand> command) Rename key oldKey to newKey.ReactiveKeyCommands.renameNX(Publisher<ReactiveKeyCommands.RenameCommand> command) Rename key oldKey to newKey only if newKey does not exist.