hash_getall
Retrieve all fields and values associated with a specific hash key in Redis, enabling comprehensive data access and management for streamlined database operations.
Instructions
获取所有哈希字段
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | 哈希键名 |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "哈希键名",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}