MOVE key db

Redis MOVE 命令用于将当前数据库的 key 移动到选定的数据库 db 当中。

如果 key 在目标数据库中已存在,或者 key 在源数据库中不存,则key 不会被移动。

*语法

redis Move 命令基本语法如下:

redis 127.0.0.1:6379> MOVE KEY_NAME DESTINATION_DATABASE

*返回值

整数, :

  • 1 如果 key 被移动。
  • 0 如果 key 没有被移动。
# key 存在于当前数据库
# redis默认使用数据库 0,为了清晰起见,这里再显式指定一次。
redis> SELECT 0                             
OK

redis> SET song "secret base - Zone"
OK

# 将 song 移动到数据库 1
redis> MOVE song 1                         
(integer) 1

# song 已经被移走
redis> EXISTS song                          
(integer) 0

# 使用数据库 1
redis> SELECT 1                            
OK

# 证实 song 被移到了数据库 1 
# (注意命令提示符变成了"redis:1",表明正在使用数据库 1)
redis:1> EXISTS song                        
(integer) 1


# 当 key 不存在的时候

redis:1> EXISTS fake_key
(integer) 0

# 试图从数据库 1 移动一个不存在的 key 到数据库 0,失败
redis:1> MOVE fake_key 0                    
(integer) 0

# 使用数据库0
redis:1> select 0                          
OK

# 证实 fake_key 不存在
redis> EXISTS fake_key                     
(integer) 0


# 当源数据库和目标数据库有相同的 key 时

# 使用数据库0
redis> SELECT 0                             
OK
redis> SET favorite_fruit "banana"
OK

# 使用数据库1
redis> SELECT 1                             
OK
redis:1> SET favorite_fruit "apple"
OK

# 使用数据库0,并试图将 favorite_fruit 移动到数据库 1
redis:1> SELECT 0                          
OK

# 因为两个数据库有相同的 key,MOVE 失败
redis> MOVE favorite_fruit 1               
(integer) 0

# 数据库 0 的 favorite_fruit 没变
redis> GET favorite_fruit                   
"banana"

redis> SELECT 1
OK

# 数据库 1 的 favorite_fruit 也是
redis:1> GET favorite_fruit                 
"apple"