delete
Remove a Redis key using its specified identifier. Returns a confirmation message upon successful deletion or an error message if the operation fails. Ideal for managing data in Redis efficiently.
Instructions
Delete a Redis key.
Args: key (str): The key to delete.
Returns: str: Confirmation message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"title": "Key",
"type": "string"
}
},
"required": [
"key"
],
"title": "deleteArguments",
"type": "object"
}