Adding acllog-max-len to Redis.conf

While playing with ACLs I noticed that acllog-max-len wasn't in the redis.conf, but was a supported config. 

This PR documents and adds the directive to the redis.conf file.
This commit is contained in:
Jamie Scott 2020-04-12 00:10:19 -07:00 committed by GitHub
parent 767977c533
commit 17bf8dc99c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -737,6 +737,15 @@ replica-priority 100
# For more information about ACL configuration please refer to # For more information about ACL configuration please refer to
# the Redis web site at https://redis.io/topics/acl # the Redis web site at https://redis.io/topics/acl
# ACL LOG
#
# The ACL Log tracks failed commands and authentication events associated
# with ACLs. The ACL Log is useful to troubleshoot failed commands blocked
# by ACLs. The ACL Log is stored in and consumes memory. There is no limit
# to its length.You can reclaim memory with ACL LOG RESET or set a maximum
# length below.
acllog-max-len 128
# Using an external ACL file # Using an external ACL file
# #
# Instead of configuring users here in this file, it is possible to use # Instead of configuring users here in this file, it is possible to use