key_info
Retrieve detailed information about a specific key in a Redis database, including its type, TTL, and associated data, to support effective database management.
Instructions
获取键信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | 键名 |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "键名",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}