@@ -450,12 +450,12 @@ repl-diskless-sync-delay 5
450450# does not immediately store an RDB on disk, it may cause data loss during
451451# failovers. RDB diskless load + Redis modules not handling I/O reads may also
452452# cause Redis to abort in case of I/O errors during the initial synchronization
453- # stage with the master. Use only if your do what you are doing.
453+ # stage with the master. Use only if you know what you are doing.
454454# -----------------------------------------------------------------------------
455455#
456456# Replica can load the RDB it reads from the replication link directly from the
457457# socket, or store the RDB to a file and read that file after it was completely
458- # recived from the master.
458+ # received from the master.
459459#
460460# In many cases the disk is slower than the network, and storing and loading
461461# the RDB file may increase replication time (and even increase the master's
@@ -655,7 +655,7 @@ replica-priority 100
655655# AUTH (or the HELLO command AUTH option) in order to be authenticated and
656656# start to work.
657657#
658- # The ACL rules that describe what an user can do are the following:
658+ # The ACL rules that describe what a user can do are the following:
659659#
660660# on Enable the user: it is possible to authenticate as this user.
661661# off Disable the user: it's no longer possible to authenticate
@@ -683,7 +683,7 @@ replica-priority 100
683683# It is possible to specify multiple patterns.
684684# allkeys Alias for ~*
685685# resetkeys Flush the list of allowed keys patterns.
686- # ><password> Add this passowrd to the list of valid password for the user.
686+ # ><password> Add this password to the list of valid password for the user.
687687# For example >mypass will add "mypass" to the list.
688688# This directive clears the "nopass" flag (see later).
689689# <<password> Remove this password from the list of valid passwords.
@@ -729,15 +729,15 @@ replica-priority 100
729729#
730730# Instead of configuring users here in this file, it is possible to use
731731# a stand-alone file just listing users. The two methods cannot be mixed:
732- # if you configure users here and at the same time you activate the exteranl
732+ # if you configure users here and at the same time you activate the external
733733# ACL file, the server will refuse to start.
734734#
735735# The format of the external ACL user file is exactly the same as the
736736# format that is used inside redis.conf to describe users.
737737#
738738# aclfile /etc/redis/users.acl
739739
740- # IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatiblity
740+ # IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatibility
741741# layer on top of the new ACL system. The option effect will be just setting
742742# the password for the default user. Clients will still authenticate using
743743# AUTH <password> as usually, or more explicitly with AUTH default <password>
@@ -884,8 +884,8 @@ replica-priority 100
884884# it is possible to increase the expire "effort" that is normally set to
885885# "1", to a greater value, up to the value "10". At its maximum value the
886886# system will use more CPU, longer cycles (and technically may introduce
887- # more latency), and will tollerate less already expired keys still present
888- # in the system. It's a tradeoff betweeen memory, CPU and latecy .
887+ # more latency), and will tolerate less already expired keys still present
888+ # in the system. It's a tradeoff between memory, CPU and latency .
889889#
890890# active-expire-effort 1
891891
@@ -946,7 +946,7 @@ replica-lazy-flush no
946946#
947947# Now it is also possible to handle Redis clients socket reads and writes
948948# in different I/O threads. Since especially writing is so slow, normally
949- # Redis users use pipelining in order to speedup the Redis performances per
949+ # Redis users use pipelining in order to speed up the Redis performances per
950950# core, and spawn multiple instances in order to scale more. Using I/O
951951# threads it is possible to easily speedup two times Redis without resorting
952952# to pipelining nor sharding of the instance.
@@ -964,7 +964,7 @@ replica-lazy-flush no
964964#
965965# io-threads 4
966966#
967- # Setting io-threads to 1 will just use the main thread as usually .
967+ # Setting io-threads to 1 will just use the main thread as usual .
968968# When I/O threads are enabled, we only use threads for writes, that is
969969# to thread the write(2) syscall and transfer the client buffers to the
970970# socket. However it is also possible to enable threading of reads and
@@ -981,7 +981,7 @@ replica-lazy-flush no
981981#
982982# NOTE 2: If you want to test the Redis speedup using redis-benchmark, make
983983# sure you also run the benchmark itself in threaded mode, using the
984- # --threads option to match the number of Redis theads , otherwise you'll not
984+ # --threads option to match the number of Redis threads , otherwise you'll not
985985# be able to notice the improvements.
986986
987987############################## APPEND ONLY MODE ###############################
@@ -1123,7 +1123,7 @@ aof-use-rdb-preamble yes
11231123#
11241124# When a long running script exceeds the maximum execution time only the
11251125# SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be
1126- # used to stop a script that did not yet called write commands. The second
1126+ # used to stop a script that did not yet call write commands. The second
11271127# is the only way to shut down the server in the case a write command was
11281128# already issued by the script but the user doesn't want to wait for the natural
11291129# termination of the script.
@@ -1218,7 +1218,7 @@ lua-time-limit 5000
12181218# cluster-migration-barrier 1
12191219
12201220# By default Redis Cluster nodes stop accepting queries if they detect there
1221- # is at least an hash slot uncovered (no available node is serving it).
1221+ # is at least a hash slot uncovered (no available node is serving it).
12221222# This way if the cluster is partially down (for example a range of hash slots
12231223# are no longer covered) all the cluster becomes, eventually, unavailable.
12241224# It automatically returns available as soon as all the slots are covered again.
@@ -1273,7 +1273,7 @@ lua-time-limit 5000
12731273# * cluster-announce-port
12741274# * cluster-announce-bus-port
12751275#
1276- # Each instruct the node about its address, client port, and cluster message
1276+ # Each instructs the node about its address, client port, and cluster message
12771277# bus port. The information is then published in the header of the bus packets
12781278# so that other nodes will be able to correctly map the address of the node
12791279# publishing the information.
@@ -1284,7 +1284,7 @@ lua-time-limit 5000
12841284# Note that when remapped, the bus port may not be at the fixed offset of
12851285# clients port + 10000, so you can specify any port and bus-port depending
12861286# on how they get remapped. If the bus-port is not set, a fixed offset of
1287- # 10000 will be used as usually .
1287+ # 10000 will be used as usual .
12881288#
12891289# Example:
12901290#
@@ -1409,7 +1409,7 @@ notify-keyspace-events ""
14091409# two kind of inline requests that were anyway illegal: an empty request
14101410# or any request that starts with "/" (there are no Redis commands starting
14111411# with such a slash). Normal RESP2/RESP3 requests are completely out of the
1412- # path of the Gopher protocol implementation and are served as usually as well.
1412+ # path of the Gopher protocol implementation and are served as usual as well.
14131413#
14141414# If you open a connection to Redis when Gopher is enabled and send it
14151415# a string like "/foo", if there is a key named "/foo" it is served via the
@@ -1610,7 +1610,7 @@ hz 10
16101610#
16111611# Since the default HZ value by default is conservatively set to 10, Redis
16121612# offers, and enables by default, the ability to use an adaptive HZ value
1613- # which will temporary raise when there are many connected clients.
1613+ # which will temporarily raise when there are many connected clients.
16141614#
16151615# When dynamic HZ is enabled, the actual configured HZ will be used as
16161616# as a baseline, but multiples of the configured HZ value will be actually
@@ -1677,7 +1677,7 @@ rdb-save-incremental-fsync yes
16771677# for the key counter to be divided by two (or decremented if it has a value
16781678# less <= 10).
16791679#
1680- # The default value for the lfu-decay-time is 1. A Special value of 0 means to
1680+ # The default value for the lfu-decay-time is 1. A special value of 0 means to
16811681# decay the counter every time it happens to be scanned.
16821682#
16831683# lfu-log-factor 10
@@ -1697,7 +1697,7 @@ rdb-save-incremental-fsync yes
16971697# restart is needed in order to lower the fragmentation, or at least to flush
16981698# away all the data and create it again. However thanks to this feature
16991699# implemented by Oran Agra for Redis 4.0 this process can happen at runtime
1700- # in an "hot" way, while the server is running.
1700+ # in a "hot" way, while the server is running.
17011701#
17021702# Basically when the fragmentation is over a certain level (see the
17031703# configuration options below) Redis will start to create new copies of the
0 commit comments