summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2014-04-23 11:55:50 +0200
committerSalvatore Sanfilippo <antirez@gmail.com>2014-04-23 11:55:50 +0200
commit3d2af579743be78e54b33855694a696f59c9ed72 (patch)
tree09350baad737de79d9cfd7947f0f7544d8763d70
parent35252037fdf0891b78a2a96d2d9899740ee88bbf (diff)
parent662f505727750e33e62df9827adad469cd2a10c7 (diff)
downloadredis-3d2af579743be78e54b33855694a696f59c9ed72.tar.gz
Merge pull request #1700 from nirvdrum/patch-1
Fixed typos.
-rw-r--r--redis.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis.conf b/redis.conf
index fa87fc9f7..d5b51639c 100644
--- a/redis.conf
+++ b/redis.conf
@@ -637,14 +637,14 @@ zset-max-ziplist-value 64
# HyperLogLog sparse representation bytes limit. The limit includes the
# 16 bytes header. When an HyperLogLog using the sparse representation crosses
-# this limit, it is convereted into the dense representation.
+# this limit, it is converted into the dense representation.
#
# A value greater than 16000 is totally useless, since at that point the
# dense representation is more memory efficient.
#
# The suggested value is ~ 3000 in order to have the benefits of
# the space efficient encoding without slowing down too much PFADD,
-# which is O(N) with the sparse encoding. Thev value can be raised to
+# which is O(N) with the sparse encoding. The value can be raised to
# ~ 10000 when CPU is not a concern, but space is, and the data set is
# composed of many HyperLogLogs with cardinality in the 0 - 15000 range.
hll-sparse-max-bytes 3000