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