key_delete
Remove specific keys or arrays of keys from a Redis database to manage storage efficiently. Supports batch deletions for streamlined data handling in Redis MCP.
Instructions
删除键
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keys | Yes | 要删除的键名或键名数组 |
Input Schema (JSON Schema)
{
"properties": {
"keys": {
"description": "要删除的键名或键名数组",
"oneOf": [
{
"description": "键名",
"type": "string"
},
{
"description": "键名数组",
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"required": [
"keys"
],
"type": "object"
}