Copyright © 2017 kamailio.org
Copyright © 2017 flowroute.com
Copyright © 2021 MomentTech
Table of Contents
List of Examples
Table of Contents
The following modules must be loaded before this module:
ndb_redis module - for interaction with a REDIS server.
topos module - to bind to as a storage engine.
The name of the REDIS server to be used as provided to the 'name' attribute of 'server' parameter for NDB_REDIS module.
The 'storage' parameter for TOPOS module must be set to 'redis'.
Default value is “NULL”.
Example 1.1. Set serverid
parameter
... # ----- ndb_redis params ----- modparam("ndb_redis", "server", "name=srv8;addr=127.0.0.1;port=6379;db=8") # ----- topos params ----- modparam("topos", "storage", "redis") # ----- topos_redis params ----- modparam("topos_redis", "serverid", "srv8") ...