Permalink
Browse files
appendfsync is now set to NO by default
- Loading branch information...
Showing
with
3 additions
and
1 deletion.
-
+1
−1
redis.c
-
+2
−0
redis.conf
|
@@ -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 */
|
|
|
|
@@ -121,6 +121,8 @@ databases 16 |
|
|
# like (you have to comment the "save" statements above to disable the dumps).
|
|
|
# Still if append only mode is enabled Redis will load the data from the
|
|
|
# log file at startup ignoring the dump.rdb file.
|
|
|
+#
|
|
|
+# The name of the append only file is "appendonly.log"
|
|
|
|
|
|
# appendonly yes
|
|
|
|
|
|
0 comments on commit
0154acd