keys.3valkey - Man Page
Returns all key names that match a pattern.
Synopsis
KEYS
pattern
Description
Returns all keys matching pattern
.
While the time complexity for this operation is O(N), the constant times are fairly low. For example, Valkey running on an entry level laptop can scan a 1 million key database in 40 milliseconds.
Warning: consider KEYS
as a command that should only be used in production environments with extreme care. It may ruin performance when it is executed against large databases. This command is intended for debugging and special operations, such as changing your keyspace layout. Don’t use KEYS
in your regular application code. If you’re looking for a way to find keys in a subset of your keyspace, consider using SCAN
or sets.
Supported glob-style patterns:
h?llo
matcheshello
,hallo
andhxllo
h*llo
matcheshllo
andheeeello
h[ae]llo
matcheshello
andhallo,
but nothillo
h[^e]llo
matcheshallo
,hbllo
, ... but nothello
h[a-b]llo
matcheshallo
andhbllo
Use \
to escape special characters if you want to match them verbatim.
When using valkey-cluster-tutorial(7) Valkey Cluster, the search is optimized for patterns that imply a single slot. If a pattern can only match keys of one slot, Valkey only iterates over keys in that slot, rather than the whole database, when searching for keys matching the pattern. For example, with the pattern {a}h*llo
, Valkey would only try to match it with the keys in slot 15495, which hash tag {a}
implies. To use pattern with hash tag, see valkey-cluster-spec(7) Hash tags in the Cluster specification for more information.
Reply
valkey-protocol(7) Array reply: a list of keys matching pattern.
Complexity
O(N) with N being the number of keys in the database, under the assumption that the key names in the database and the given pattern have limited length.
Acl Categories
@dangerous @keyspace @read @slow
History
- Available since: 1.0.0
Examples
127.0.0.1:6379> MSET firstname Jack lastname Stuntman age 35 OK 127.0.0.1:6379> KEYS *name* 1) "lastname" 2) "firstname" 127.0.0.1:6379> KEYS a?? 1) "age" 127.0.0.1:6379> KEYS * 1) "age" 2) "lastname" 3) "firstname"
See Also
copy(3valkey), del(3valkey), dump(3valkey), exists(3valkey), expire(3valkey), expireat(3valkey), expiretime(3valkey), migrate(3valkey), move(3valkey), object(3valkey), object-encoding(3valkey), object-freq(3valkey), object-help(3valkey), object-idletime(3valkey), object-refcount(3valkey), persist(3valkey), pexpire(3valkey), pexpireat(3valkey), pexpiretime(3valkey), pttl(3valkey), randomkey(3valkey), rename(3valkey), renamenx(3valkey), restore(3valkey), scan(3valkey), sort(3valkey), sort_ro(3valkey), touch(3valkey), ttl(3valkey), type(3valkey), unlink(3valkey), wait(3valkey), waitaof(3valkey)