Arguments
...string[]
required
One or more keys to remove.
Response
The number of keys that were removed.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
await redis.del("key1", "key2");
// in case you have an array of keys
const keys = ["key1", "key2"];
await redis.del(...keys)
Removes the specified keys. A key is ignored if it does not exist.
await redis.del("key1", "key2");
// in case you have an array of keys
const keys = ["key1", "key2"];
await redis.del(...keys)
Was this page helpful?