summaryrefslogtreecommitdiff
path: root/redis.conf
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-03-07 23:41:48 +0100
committerantirez <antirez@gmail.com>2010-03-07 23:41:48 +0100
commitcbba7dd7c90f7b5b845d1dea86390572e5b4fa2c (patch)
tree0f476ad60fb6f957802bb30911875f1d9a50f1d4 /redis.conf
parent18e61fa2ff09418025834c58618e598030f7832c (diff)
downloadredis-cbba7dd7c90f7b5b845d1dea86390572e5b4fa2c.tar.gz
HSET fixes, now the new pointer is stored back in the object pointer field
Diffstat (limited to 'redis.conf')
-rw-r--r--redis.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/redis.conf b/redis.conf
index 2923a3aa4..0ed593d24 100644
--- a/redis.conf
+++ b/redis.conf
@@ -271,3 +271,10 @@ glueoutputbuf yes
# your development environment so that we can test it better.
shareobjects no
shareobjectspoolsize 1024
+
+# 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 64
+hash-max-zipmap-value 512