
Redis Increment
CertifiedIncrement a Redis string number
Redis Increment
Increment a Redis string number
Runs INCR, INCRBY, or INCRBYFLOAT on the rendered key depending on the amount type, and can apply an expiration (absolute or relative, not both).
type: io.kestra.plugin.redis.string.IncrementExamples
id: redis_increment
namespace: company.team
inputs:
- id: key_name
type: STRING
displayName: Key name to increment
tasks:
- id: increment
type: io.kestra.plugin.redis.string.Increment
url: redis://:redis@localhost:6379/0
key: "{{ inputs.key_name }}"
Properties
key *Requiredstring
Redis key to increment
Rendered before the increment command.
url *Requiredstring
Redis connection string
amount numberstring
Increment amount
Optional; defaults to 1. Integer uses INCR/INCRBY, decimal uses INCRBYFLOAT.
options Non-dynamic
Expiration options
Optional TTL settings; choose either duration or absolute date.
io.kestra.plugin.redis.string.Increment-Options
Expiration date
Absolute timestamp; cannot be combined with expirationDuration.
Expiration duration
Relative TTL; cannot be combined with expirationDate.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
key string
Incremented key
value number
Incremented value