hgetall
Retrieve all field-value pairs from a specified Redis hash to access and manage stored data efficiently. Input the hash key to return a dictionary or error message.
Instructions
Get all fields and values from a Redis hash.
Args: name: The Redis hash key.
Returns: A dictionary of field-value pairs or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "hgetallArguments",
"type": "object"
}