config-parser icon indicating copy to clipboard operation
config-parser copied to clipboard

support for redis multi line config

Open naughtyGitCat opened this issue 4 years ago • 0 comments

for example

client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 512mb 128mb 120
client-output-buffer-limit pubsub 32mb 8mb 60

each line of client-output-buffer-limit means different entry for config

expect

config.GetValue("client-output-buffer-limit")

returns

["normal 0 0 0", "slave 512mb 128mb 120", "pubsub 32mb 8mb 60"]

naughtyGitCat avatar Jun 11 '21 04:06 naughtyGitCat