
Redis Increment
CertifiedIncrement a Redis JSON number
Redis Increment
Certified
Increment a Redis JSON number
Runs JSON.NUMINCRBY on the rendered key/path, defaults increment to 1, and can apply an expiration (absolute or relative, not both).
yaml
type: io.kestra.plugin.redis.json.IncrementExamples
yaml
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.json.Increment
url: redis://:redis@localhost:6379/0
key: "{{ inputs.key_name }}"
path: "$"
Properties
key *Requiredstring
Redis key to increment
Rendered before calling JSON.NUMINCRBY.
path *Requiredstring
JSON path to increment
Required; uses RedisJSON path syntax.
url *Requiredstring
Redis connection string
amount numberstring
Default
1Increment amount
Defaults to 1.
options Non-dynamic
Expiration options
Optional TTL settings; choose either duration or absolute date.
Definitions
io.kestra.plugin.redis.json.Increment-Options
expirationDatestring
Expiration date
Absolute epoch timestamp; cannot be combined with expirationDuration.
expirationDurationstring
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