]> git.saurik.com Git - redis.git/blobdiff - redis.conf
change how arguments are passed from the AOF tests
[redis.git] / redis.conf
index f8e64dc76c6d0965f7804aef41383628933b96df..c48a2fb82a345baf9c0a73c055883b04e876cf62 100644 (file)
@@ -163,13 +163,14 @@ dir ./
 # 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.aof"
-#
 # IMPORTANT: Check the BGREWRITEAOF to check how to rewrite the append
 # log file in background when it gets too big.
 
 appendonly no
 
+# The name of the append only file (default: "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 
 # data on disk, some other OS will just try to do it ASAP.