Redis Delete

Redis Delete

Certified

Delete Redis string keys

Runs DEL on the rendered key list, counts deletions, and can fail when not all keys are removed.

yaml
type: io.kestra.plugin.redis.string.Delete
yaml
id: redis_delete
namespace: company.team

tasks:
  - id: delete
    type: io.kestra.plugin.redis.string.Delete
    url: redis://:redis@localhost:6379/0
    keys:
      - keyDelete1
      - keyDelete2
Properties
SubTypestring

Keys to delete

Rendered list passed to DEL.

Redis connection string

Defaultfalse

Fail when deletions are missing

Defaults to false; when true, throws if fewer keys are deleted than requested.

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

Deleted count

Total deleted keys.

Unitrecords

Number of records deleted from Redis.