
Redis Get
CertifiedRead a Redis string value
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.GetExamples
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
key *Requiredstring
Redis key to read
Rendered before calling GET.
serdeType *Requiredstring
Default
STRINGPossible Values
STRINGJSONSerialization format
Defaults to STRING; controls how the value is deserialized.
url *Requiredstring
Redis connection string
failedOnMissing booleanstring
Default
falseFail when key is missing
Defaults to false; when true, throws if GET returns null.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
data object
Fetched value
key string
Fetched key