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"Examples
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
key *Requiredstring
The redis key you want to get,
url *Requiredstring
The connection string.
failedOnMissing booleanstring
 Default 
falseIf some keys are not defined, fail the task.
path string
 Default 
$JSON path to extract value (default is root '$')
Outputs
data object
The fetched data.
key string
The fetched key.