Fetch a Redis item by key with type JSON and return its value.

Query for a key in a Redis database and return the associated JSON value.

yaml
type: "io.kestra.plugin.redis.json.Get"
yaml
id: redis_json_get
namespace: company.team

inputs:
    - id: key_name
      type: STRING
      displayName: Key name to search

tasks:
  - id: get
    type: io.kestra.plugin.redis.json.Get
    url: redis://:redis@localhost:6379/0
    key: "{{ inputs.key_name }}"
Properties

The redis key you want to get,

The connection string.

Default false

If some keys are not defined, fail the task.

Default $

JSON path to extract value (default is root '$')

The fetched data.

The fetched key.