subscribe
Subscribe to a Redis channel to receive real-time updates. Specify the channel to monitor data changes effectively.
Instructions
Subscribe to a Redis channel.
Args: channel: The Redis channel to subscribe to.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
}
},
"required": [
"channel"
],
"title": "subscribeArguments",
"type": "object"
}