Redis Increment

Redis Increment

Certified

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).

yaml
type: io.kestra.plugin.redis.string.Increment
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.string.Increment
    url: redis://:redis@localhost:6379/0
    key: "{{ inputs.key_name }}"
Properties

Redis key to increment

Rendered before the increment command.

Redis connection string

Increment amount

Optional; defaults to 1. Integer uses INCR/INCRBY, decimal uses INCRBYFLOAT.

Expiration options

Optional TTL settings; choose either duration or absolute date.

Definitions
expirationDatestring

Expiration date

Absolute timestamp; cannot be combined with expirationDuration.

expirationDurationstring

Expiration duration

Relative TTL; cannot be combined with expirationDate.

Reference (ref) of the pluginDefaults to apply to this task.

Incremented key

Incremented value