redis sink Redis Sink

Provided by: "Apache Software Foundation"

Support Level for this Kamelet is: "Stable"

Write object to a Redis cache.

Configuration Options

The following table summarizes the configuration options available for the redis-sink Kamelet:

Property Name Description Type Default Example

command

Command

Required Redis Command.

string

GET

redisHost

Redis Host

Required The host where Redis server is running.

string

redisPort

Redis Port

Required The port where Redis server is running.

integer

channels

Channels

Redis Channels.

string

one

serializer

Serializer

RedisSerializer fully qualified name implementation.

string

org.springframework.data.redis.serializer.StringRedisSerializer

Dependencies

At runtime, the redis-sink Kamelet relies upon the presence of the following dependencies:

  • camel:kamelet

  • camel:core

  • camel:spring-redis

Camel JBang usage

Prerequisites

  • You’ve installed JBang.

  • You have executed the following command:

jbang app install camel@apache/camel

Supposing you have a file named route.yaml with this content:

- route:
    from:
      uri: "kamelet:timer-source"
      parameters:
        period: 10000
        message: 'test'
      steps:
        - to:
            uri: "kamelet:redis-sink"

You can now run it directly through the following command

camel run route.yaml