summaryrefslogtreecommitdiff
path: root/redis.conf
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-09-10 16:39:51 +0200
committerantirez <antirez@gmail.com>2018-09-11 15:32:28 +0200
commitc9bab6f30231e0ba19c03970073921f17894a83b (patch)
tree08eddb955278d73d079bbd7082bbd241aeb5ed9e /redis.conf
parent8296e5c8464e406af946edb5d520f4c0c2b67997 (diff)
downloadredis-c9bab6f30231e0ba19c03970073921f17894a83b.tar.gz
Slave removal: Make obvious in redis.conf what a replica is.
Diffstat (limited to 'redis.conf')
-rw-r--r--redis.conf5
1 files changed, 5 insertions, 0 deletions
diff --git a/redis.conf b/redis.conf
index 66ad3418a..3ca9fe5bc 100644
--- a/redis.conf
+++ b/redis.conf
@@ -267,6 +267,11 @@ dir ./
# Master-Replica replication. Use replicaof to make a Redis instance a copy of
# another Redis server. A few things to understand ASAP about Redis replication.
#
+# +------------------+ +---------------+
+# | Master | ---> | Replica |
+# | (receive writes) | | (exact copy) |
+# +------------------+ +---------------+
+#
# 1) Redis replication is asynchronous, but you can configure a master to
# stop accepting writes if it appears to be not connected with at least
# a given number of replicas.