diff options
author | Salvatore Sanfilippo <antirez@gmail.com> | 2020-04-06 17:27:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 17:27:39 +0200 |
commit | 094b47391de9ce83a6217e993e4da3f3d10edb7e (patch) | |
tree | 9d0393e71e1523af73232f5bc5424d67609bdd29 /redis.conf | |
parent | 121c51f4f338dcb160398c3254024867807aa112 (diff) | |
parent | 3c0ed0309ac5bae52464ecb45e92056e212f2b7f (diff) | |
download | redis-094b47391de9ce83a6217e993e4da3f3d10edb7e.tar.gz |
Merge pull request #6243 from soloestoy/expand-lazy-free-server-del
lazyfree: add a new configuration lazyfree-lazy-user-del
Diffstat (limited to 'redis.conf')
-rw-r--r-- | redis.conf | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/redis.conf b/redis.conf index 7c55a3ab0..14388e320 100644 --- a/redis.conf +++ b/redis.conf @@ -936,7 +936,9 @@ replica-priority 100 # or SORT with STORE option may delete existing keys. The SET command # itself removes any old content of the specified key in order to replace # it with the specified string. -# 4) During replication, when a replica performs a full resynchronization with +# 4) The DEL command itself, and normally it's not easy to replace DEL with +# UNLINK in user's codes. +# 5) During replication, when a replica performs a full resynchronization with # its master, the content of the whole database is removed in order to # load the RDB file just transferred. # @@ -948,6 +950,7 @@ replica-priority 100 lazyfree-lazy-eviction no lazyfree-lazy-expire no lazyfree-lazy-server-del no +lazyfree-lazy-user-del no replica-lazy-flush no ################################ THREADED I/O ################################# |