Unverified Commit bdf531e3 authored by Viktor Söderqvist's avatar Viktor Söderqvist Committed by GitHub
Browse files

Extend output of DEBUG HELP for POPULATE (#9869)

parent b8e82d20
...@@ -434,7 +434,9 @@ void debugCommand(client *c) { ...@@ -434,7 +434,9 @@ void debugCommand(client *c) {
" Crash the server simulating a panic.", " Crash the server simulating a panic.",
"POPULATE <count> [<prefix>] [<size>]", "POPULATE <count> [<prefix>] [<size>]",
" Create <count> string keys named key:<num>. If <prefix> is specified then", " Create <count> string keys named key:<num>. If <prefix> is specified then",
" it is used instead of the 'key' prefix.", " it is used instead of the 'key' prefix. These are not propagated to",
" replicas. Cluster slots are not respected so keys not belonging to the",
" current node can be created in cluster mode.",
"PROTOCOL <type>", "PROTOCOL <type>",
" Reply with a test value of the specified type. <type> can be: string,", " Reply with a test value of the specified type. <type> can be: string,",
" integer, double, bignum, null, array, set, map, attrib, push, verbatim,", " integer, double, bignum, null, array, set, map, attrib, push, verbatim,",
...@@ -476,7 +478,7 @@ void debugCommand(client *c) { ...@@ -476,7 +478,7 @@ void debugCommand(client *c) {
"LISTPACK <key>", "LISTPACK <key>",
" Show low level info about the listpack encoding of <key>.", " Show low level info about the listpack encoding of <key>.",
"QUICKLIST <key> [<0|1>]", "QUICKLIST <key> [<0|1>]",
" Show low level info about the quicklist encoding of <key>." " Show low level info about the quicklist encoding of <key>.",
" The optional argument (0 by default) sets the level of detail", " The optional argument (0 by default) sets the level of detail",
"CLIENT-EVICTION", "CLIENT-EVICTION",
" Show low level client eviction pools info (maxmemory-clients).", " Show low level client eviction pools info (maxmemory-clients).",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment