Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
Signed-off-by: Binbin <[email protected]>
  • Loading branch information
enjoy-binbin committed Aug 15, 2024
1 parent 1d56868 commit 8b9cb4c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions valkey.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1271,10 +1271,9 @@ acllog-max-len 128
# its primary, the content of the whole database is removed in order to
# load the RDB file just transferred.
#
# In all the above cases the default is to delete objects in a blocking way,
# like if DEL was called. However you can configure each case specifically
# in order to instead release memory in a non-blocking way like if UNLINK
# was called, using the following configuration directives.
# In all the above cases the old default is to delete objects in a blocking way,
# like if DEL was called. Now the new default is release memory in a non-blocking
# way like if UNLINK was called.

lazyfree-lazy-eviction yes
lazyfree-lazy-expire yes
Expand All @@ -1293,6 +1292,10 @@ lazyfree-lazy-user-del yes
# commands. When neither flag is passed, this directive will be used to determine
# if the data should be deleted asynchronously.

# There are many problems with running flush synchronously. Even in single CPU
# environments, the thread managers should balance between the freeing and
# serving incoming requests. The default value is yes.

lazyfree-lazy-user-flush yes

################################ THREADED I/O #################################
Expand Down

0 comments on commit 8b9cb4c

Please sign in to comment.