server.appendfilename = "appendonly.aof";
server.requirepass = NULL;
server.shareobjects = 0;
- server.rdbcompression = 0;
+ server.rdbcompression = 1;
server.sharingpoolsize = 1024;
server.maxclients = 0;
server.maxmemory = 0;
save 60 10000
# Compress string objects using LZF when dump .rdb databases?
-# For default that's set to 'no' because uses too much CPU time.
-# You want to switch this to 'yes' only if you have a lot of very compressible
-# data inside your dataset and are using replication.
-rdbcompression no
+# For default that's set to 'yes' as it's almost always a win.
+# If you want to save some CPU in the saving child set it to 'no' but
+# the dataset will likely be bigger if you have compressible values or keys.
+rdbcompression yes
# The filename where to dump the DB
dbfilename dump.rdb