We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当前版本配置文件:
function = "" [sync_reader] # ... [redis_writer] # ... [advanced] # ... [module] # ...
计划改动为:
[sync_reader] # ... [redis_writer] # ... [filter] allow_key_prefix = "myapp" allow_key_suffix = "myapp" block_key_prefix = "myapp" block_key_suffix = "myapp" allow_db = [] block_db = [] allow_command = [] block_command = [] allow_command_group = [] block_command_group = [] function = "" [advanced] # ...
改动有:
filter
lua
function
RedisShake
module
advanced
target_redis_proto_max_bulk_len
个人意见,欢迎大家提出别的看法。
The text was updated successfully, but these errors were encountered:
赞
Sorry, something went wrong.
suxb201
No branches or pull requests
当前版本配置文件:
计划改动为:
改动有:
filter
,里面增加常用的过滤选项,基于lua
的function
过滤作为备用选项。好处有亮点:a. 多数场景下用户配置更方便,不需要去写lua
脚本 b.RedisShake
过滤效率更高module
放到advanced
中,低频配置应该更隐藏,避免给常用场景造成干扰。target_redis_proto_max_bulk_len
是否需要换个名字,从 issue 来看,这个配置使用频率比较高。个人意见,欢迎大家提出别的看法。
The text was updated successfully, but these errors were encountered: