hdel
Remove a specific field from a Redis hash by specifying the hash key and field name. Simplifies data management in Redis by enabling precise deletion of hash fields.
Instructions
Delete a field from a Redis hash.
Args: name: The Redis hash key. key: The field name inside the hash.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"title": "Key",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"key"
],
"title": "hdelArguments",
"type": "object"
}