redis_echo
Task that appends the message to a redis list.
def redis_echo(
message: string,
redis_key: string = "redis-echo"
) - > null
Task that appends the message to a redis list.
Parameters
| Name | Type | Description |
|---|---|---|
| message | string | The content or payload to be appended to the specified Redis list |
| redis_key | string = "redis-echo" | The key name of the Redis list where the message will be stored |
Returns
| Type | Description |
|---|---|
null | This function does not return a value. |