
Get
Fetch a Redis item by key and return its value.
Get
Fetch a Redis item by key and return its value.
Fetch a Redis item by key and return its value.
Query for a key in a Redis database and return the associated value.
yaml
type: "io.kestra.plugin.redis.string.Get"Examples
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
The redis key you want to get
serdeType*Requiredstring
Default
STRINGPossible Values
STRINGJSONFormat of the data contained in Redis
url*Requiredstring
The connection string.
failedOnMissingbooleanstring
Default
falseIf some keys are not defined, failed the task.
Outputs
dataobject
The fetched data.
keystring
The fetched key.