mirror of
https://github.com/fluencelabs/redis
synced 2025-06-18 19:51:22 +00:00
appendfsync is now set to NO by default
This commit is contained in:
2
redis.c
2
redis.c
@ -1036,7 +1036,7 @@ static void initServerConfig() {
|
||||
server.glueoutputbuf = 1;
|
||||
server.daemonize = 0;
|
||||
server.appendonly = 0;
|
||||
server.appendfsync = APPENDFSYNC_EVERYSEC;
|
||||
server.appendfsync = APPENDFSYNC_NO;
|
||||
server.lastfsync = time(NULL);
|
||||
server.appendfd = -1;
|
||||
server.appendseldb = -1; /* Make sure the first time will not match */
|
||||
|
Reference in New Issue
Block a user