KEYS
Returns all keys matching .
Supported glob-style patterns:
h?llo
matcheshello
,hallo
andhxllo
h*llo
matcheshllo
andheeeello
h[^e]llo
matcheshallo
,hbllo
, … but nothello
h[a-b]llo
matcheshallo
andhbllo
Array reply: list of keys matching .
Dragonfly protects itself from an overwhelming number of returned keys by imposing a limit on the quantity. To modify this limit, update the value of the “keys_output_limit” flag. Please refer to for more information how to change dragonfly flag values.
dragonfly> MSET firstname Jack lastname Stuntman age 35
"OK"
dragonfly> KEYS *name*
2) "firstname"
dragonfly> KEYS a??
1) "age"
dragonfly> KEYS *
1) "lastname"
3) "firstname"