Skip to main content

Introduction

The framework supports Redis as a datasource. It helps to utilize redis in different ways.

8.8.1 Example spec

The datasources for Redis are defined in src/datasources. Here, Redis datasource is defined in redis.yaml.

.
├── config
└── src
├── datasources
│   └── httpbin.yaml
│   ├── redis.yaml
├── events
├── functions
└── mappings

Sample configuration in redis.yaml

type: redis
url: redis[s]://[[username][:password]@][host][:port][/db-number]

For full redis configuration, Refer redis node client documentation.