1
0
mirror of https://github.com/fluencelabs/redis synced 2025-07-12 07:11:34 +00:00

Diskless replication: redis.conf and CONFIG SET/GET support.

This commit is contained in:
antirez
2014-10-16 10:22:02 +02:00
parent 78adcfe139
commit 1472c68212
4 changed files with 18 additions and 5 deletions

@ -1480,7 +1480,7 @@ void initServerConfig(void) {
server.repl_slave_ro = REDIS_DEFAULT_SLAVE_READ_ONLY;
server.repl_down_since = 0; /* Never connected, repl is down since EVER. */
server.repl_disable_tcp_nodelay = REDIS_DEFAULT_REPL_DISABLE_TCP_NODELAY;
server.repl_diskless_sync = REDIS_DEFAULT_RDB_DISKLESS_SYNC;
server.repl_diskless_sync = REDIS_DEFAULT_REPL_DISKLESS_SYNC;
server.slave_priority = REDIS_DEFAULT_SLAVE_PRIORITY;
server.master_repl_offset = 0;