Delete
Delete one or more Redis items by key.
List one or more keys to delete in a Redis database.
yaml
type: "io.kestra.plugin.redis.json.Delete"Examples
yaml
id: redis_json_delete
namespace: company.team
tasks:
  - id: delete
    type: io.kestra.plugin.redis.json.Delete
    url: redis://:redis@localhost:6379/0
    keys:
      keyDelete1:
         - path1
         - path2
Properties
keys *Requiredobject
 SubType array
Map of Redis keys and their JSON paths to delete. Each key can have a single JSON path or a list of JSON paths. Use $ for deleting the entire key.
url *Requiredstring
The connection string.
failedOnMissing booleanstring
 Default 
falseIf some keys are not deleted, fail the task.
Outputs
count integer
Number of key deleted
Metrics
deleted.records.count counter
 Unit 
recordsNumber of records deleted from Redis.