hash_set
Store or update field-value pairs in a Redis hash. Manage structured data by specifying a key, field, and value for efficient Redis database operations.
Instructions
设置哈希字段
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field | Yes | 字段名 | |
key | Yes | 哈希键名 | |
value | Yes | 字段值 |
Input Schema (JSON Schema)
{
"properties": {
"field": {
"description": "字段名",
"type": "string"
},
"key": {
"description": "哈希键名",
"type": "string"
},
"value": {
"description": "字段值",
"type": "string"
}
},
"required": [
"key",
"field",
"value"
],
"type": "object"
}