key_search
Search Redis database keys using pattern matching with wildcards (*, ?, []). Streamline key discovery for efficient data management and retrieval.
Instructions
查找匹配的键
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | Yes | 匹配模式(支持通配符 * ? []) |
Input Schema (JSON Schema)
{
"properties": {
"pattern": {
"description": "匹配模式(支持通配符 * ? [])",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}