]> git.saurik.com Git - redis.git/blobdiff - redis.conf
call lua_gc() for incremental garbage collection. Likely there is to tune this at...
[redis.git] / redis.conf
index a470c98cf0aa16de6f4ff2c74532ba247a4823d4..e7a01eec4e5618910e3613badaad59ee7e96779d 100644 (file)
@@ -340,6 +340,12 @@ list-max-ziplist-value 64
 # set in order to use this special memory saving encoding.
 set-max-intset-entries 512
 
+# Similarly to hashes and lists, sorted sets are also specially encoded in
+# order to save a lot of space. This encoding is only used when the length and
+# elements of a sorted set are below the following limits:
+zset-max-ziplist-entries 128
+zset-max-ziplist-value 64
+
 # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
 # order to help rehashing the main Redis hash table (the one mapping top-level
 # keys to values). The hash table implementation redis uses (see dict.c)