Skip to main content

Redis

The OpenTalk controller uses the in-memory data store Redis for caching data related to a video conference session.

Configuration

The section in the configuration file is called redis.

FieldTypeRequiredDefault valueDescription
urlstringno"redis://localhost:6379/"TCP port number where the Redis server can be reached

Examples

Default Setup

The default setup requires no manual input:

[redis]
#url = "redis://localhost:6379/"

Custom Redis URL

A custom Redis URL can be specified as following:

[redis]
url = "redis://localhost:6399/"