hexists
Verify the existence of a specific field within a Redis hash by providing the hash key and field name. Returns True if the field exists, False otherwise.
Instructions
Check if a field exists in a Redis hash.
Args: name: The Redis hash key. key: The field name inside the hash.
Returns: True if the field exists, False otherwise.
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": "hexistsArguments",
"type": "object"
}