English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Redis Sync Command

Redis Server

The Redis Sync command is used to synchronize the master and slave servers.

Syntax

The basic syntax of the redis SYNC command is as follows:

redis 127.0.0.1:6379> SYNC

Available Version

>= 1.0.0

Return Value

Indeterminate.

Online Examples

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 Server