xdel
Remove a specific entry from a Redis stream by specifying the stream key and entry ID, ensuring precise data management and cleanup.
Instructions
Delete an entry from a Redis stream.
Args: key (str): The stream key. entry_id (str): The ID of the entry to delete.
Returns: str: Confirmation message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entry_id | Yes | ||
key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"entry_id": {
"title": "Entry Id",
"type": "string"
},
"key": {
"title": "Key",
"type": "string"
}
},
"required": [
"key",
"entry_id"
],
"title": "xdelArguments",
"type": "object"
}