Redis SYNC 命令

Redis 服务器

Redis SYNC 命令用于同步主从服务器。

 

1. 语法

redis SYNC 命令基本语法如下:

redis 127.0.0.1:6379> SYNC  

 

2. 可用版本

>= 1.0.0

 

3. 返回值

不明确。

 

4. 范例

redis 127.0.0.1:6379> SYNC 
Entering slave output mode...  (press Ctrl-C to quit)
SYNC with master, discarding 18 bytes of bulk transfer...
SYNC done. Logging commands from master.
"PING"
"PING"
"PING"
"PING"

Redis 服务器

Redis MONITOR 命令用于实时打印出 Redis 服务器接收到的命令,调试用。redis MONITOR 命令基本语法如下:MONITOR。返回值:总是返回 OK。