]> git.saurik.com Git - redis.git/blobdiff - redis.conf
ability to specify a different file name for the DB
[redis.git] / redis.conf
index 0083d7f100e9bf0a703bbb8ef2de1dd2268603a8..38592b02e6bc3c49c44fd717f4604d475456950f 100644 (file)
@@ -34,6 +34,9 @@ save 900 1
 save 300 10
 save 60 10000
 
+# The filename where to dump the DB
+dbfilename dump.rdb
+
 # For default save/load DB in/from the working directory
 # Note that you must specify a directory not a file name.
 dir ./
@@ -50,7 +53,9 @@ loglevel debug
 # output for logging but daemonize, logs will be sent to /dev/null
 logfile stdout
 
-# Set the number of databases.
+# Set the number of databases. The default database is DB 0, you can select
+# a different one on a per-connection basis using SELECT <dbid> where
+# dbid is a number between 0 and 'databases'-1
 databases 16
 
 ################################# REPLICATION #################################