Redis MOVE command is used to move a key from the currently selected database to the specified destination database.
Return Value
Integer value 1 or 0
- 1, if the key is moved.
- 0, if the key is not moved.
Syntax
Following is the basic syntax of Redis MOVE command.
redis 127.0.0.1:6379> MOVE KEY_NAME DESTINATION_DATABASE
Example
First, create a key in Redis and set some value in it.
redis 127.0.0.1:6379> SET Adglob redis OK
In Redis, by default 0th database is selected, so now we are moving the generated key in the second database.
redis 127.0.0.1:6379> MOVE Adglob 1 1) (integer) 1
Pingback: Redis - Keys - Adglob Infosystem Pvt Ltd