Arguments
string
required
A glob-style pattern. Use
* to match all keys.Response
Array of keys matching the pattern.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
const keys = await redis.keys("prefix*");
const keys = await redis.keys("*");
Returns all keys matching pattern.
* to match all keys.const keys = await redis.keys("prefix*");
const keys = await redis.keys("*");
Was this page helpful?