From 673c42bb4e2f8ab68b70857f48619c6b5b068068 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 19 Dec 2013 10:18:45 +0100 Subject: [PATCH] Example redis.conf formatted to better show appendfilename option. --- redis.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/redis.conf b/redis.conf index 7000580a..460987a8 100644 --- a/redis.conf +++ b/redis.conf @@ -420,7 +420,8 @@ slave-priority 100 appendonly no # The name of the append only file (default: "appendonly.aof") -# appendfilename appendonly.aof + +appendfilename "appendonly.aof" # The fsync() call tells the Operating System to actually write data on disk # instead to wait for more data in the output buffer. Some OS will really flush @@ -467,6 +468,7 @@ appendfsync everysec # # If you have latency problems turn this to "yes". Otherwise leave it as # "no" that is the safest pick from the point of view of durability. + no-appendfsync-on-rewrite no # Automatic rewrite of the append only file. -- GitLab