summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Menard <kevin@nirvdrum.com>2014-04-22 10:51:19 -0400
committerantirez <antirez@gmail.com>2014-04-23 15:34:51 +0200
commit12e435d2a49a3a121b91b14c23162c800d5fb798 (patch)
tree866826ffa01aeadcda3903911406da988796d547
parent7dd4432798ddf48a02f1ce1296aa142cf57e3703 (diff)
downloadredis-12e435d2a49a3a121b91b14c23162c800d5fb798.tar.gz
Fixed typos.
-rw-r--r--redis.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis.conf b/redis.conf
index ee3a3a3ce..00a2f9193 100644
--- a/redis.conf
+++ b/redis.conf
@@ -684,14 +684,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