 Publish
Publish
Publish one or multiple values to a Redis channel.
yaml
type: "io.kestra.plugin.redis.pubsub.Publish"Examples
yaml
id: redis_publish
namespace: company.team
tasks:
  - id: publish
    type: io.kestra.plugin.redis.pubsub.Publish
    url: redis://:redis@localhost:6379/0
    channel: mych
    from:
      - value1
      - value2
Properties
channel *Requiredstring
The Redis channel to publish
from *Requiredstringarray
The list of values to publish to the channel
serdeType *Requiredstring
 Default 
STRING Possible Values 
STRINGJSONFormat of the data contained in Redis
url *Requiredstring
The connection string.
Outputs
count integer
Count
The number of values published
