]> git.saurik.com Git - redis.git/commitdiff
Update default configuration
authorPieter Noordhuis <pcnoordhuis@gmail.com>
Wed, 25 Jan 2012 21:37:43 +0000 (13:37 -0800)
committerPieter Noordhuis <pcnoordhuis@gmail.com>
Wed, 25 Jan 2012 21:37:43 +0000 (13:37 -0800)
redis.conf

index 29e326d121ffbf5275224c362099634221dd0a9c..fc72b5364322da9b39ff76e5a03a82f861034139 100644 (file)
@@ -394,12 +394,11 @@ slowlog-max-len 1024
 
 ############################### ADVANCED CONFIG ###############################
 
-# Hashes are encoded in a special way (much more memory efficient) when they
-# have at max a given numer of elements, and the biggest element does not
-# exceed a given threshold. You can configure this limits with the following
-# configuration directives.
-hash-max-zipmap-entries 512
-hash-max-zipmap-value 64
+# Hashes are encoded using a memory efficient data structure when they have a
+# small number of entries, and the biggest entry does not exceed a given
+# threshold. These thresholds can be configured using the following directives.
+hash-max-ziplist-entries 512
+hash-max-ziplist-value 64
 
 # Similarly to hashes, small lists are also encoded in a special way in order
 # to save a lot of space. The special representation is only used when