hexists
Determine if a specific field exists within a Redis hash by providing the hash key and field name. Returns True if the field is found, otherwise False.
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 |