Skip to content

Redis Client

The redis.client module connects to a Redis server. This module does not produce any messages and so using it as an input to a route would be pointless.

  • typeredis.client
  • params:
    • host: the hostname or IP address of the Redis server to connect to
    • port: the port to use when connecting to the Redis server

This module implements the KeyValueModule interface.

Connect to a Redis server running on localhost at port 6379.

- id: redisClient
type: redis.client
params:
host: "localhost"
port: 6379