key_delete_pattern
Remove multiple Redis keys matching a specified pattern using wildcard support. Simplify Redis data management by efficiently deleting bulk keys based on search criteria.
Instructions
批量删除匹配的键
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | Yes | 匹配模式(支持通配符 * ? []) |
Input Schema (JSON Schema)
{
"properties": {
"pattern": {
"description": "匹配模式(支持通配符 * ? [])",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}