Redis Get

Redis Get

Certified

Read a Redis string value

Renders the key, runs GET, deserializes with the selected serde (STRING by default), and can fail if the key is missing.

yaml
type: io.kestra.plugin.redis.string.Get
yaml
id: redis_get
namespace: company.team

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

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

Redis key to read

Rendered before calling GET.

DefaultSTRING
Possible Values
STRINGJSON

Serialization format

Defaults to STRING; controls how the value is deserialized.

Redis connection string

Defaultfalse

Fail when key is missing

Defaults to false; when true, throws if GET returns null.

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

Fetched value

Fetched key