CACHEDB_REDIS module
Admin Guide
Section titled “Admin Guide”Overview
Section titled “Overview”This module is an implementation of a cache system designed to work with a Redis server. It uses hiredis client library to connect to either a single Redis server instance, or to a Redis Server inside a Redis Cluster. It uses the Key-Value interface exported from the core.
Advantages
Section titled “Advantages”- memory costs are no longer on the server
- many servers can be used inside a cluster, so the memory is virtually unlimited
- the cache is 100% persistent. A restart of OpenSIPS server will not affect the DB. The Redis DB is also persistent so it can also be restarted without loss of information.
- redis is an open-source project so it can be used to exchange data with various other applications
- By creating a Redis Cluster, multiple OpenSIPS instances can easily share key-value information
Limitations
Section titled “Limitations”- keys (in key:value pairs) may not contain spaces or control characters
Dependencies
Section titled “Dependencies”OpenSIPS Modules
Section titled “OpenSIPS Modules”None.
External Libraries or Applications
Section titled “External Libraries or Applications”The following libraries or applications must be installed before running OpenSIPS with this module loaded:
- hiredis: On the latest Debian based distributions, hiredis can be installed by running ‘apt-get install libhiredis-dev’
Alternatively, if hiredis is not available on your OS repos, hiredis can be downloaded from: https://github.com/antirez/hiredis . Download the archive, extract sources, run make,sudo make install.
Exported Parameters
Section titled “Exported Parameters”cachedb_url (string)
Section titled “cachedb_url (string)”The urls of the server groups that OpenSIPS will connect to in order to use the from script cache_store,cache_fetch, etc operations. It can be set more than one time. The prefix part of the URL will be the identifier that will be used from the script.
...modparam("cachedb_redis", "cachedb_url","redis:group1://localhost:6379/")modparam("cachedb_redis", "cachedb_url","redis:cluster1://random_url:8888/")......cache_store("redis:group1","key","$ru value");cache_fetch("redis:cluster1","key",$avp(10));cache_remove("redis:cluster1","key");...connect_timeout (integer)
Section titled “connect_timeout (integer)”This parameter specifies how many milliseconds OpenSIPS should wait for connecting to a Redis node.
Default value is “5000 ms”.
...# wait 1 seconds for Redis to connectmodparam("cachedb_redis", "connect_timeout",1000)...query_timeout (integer)
Section titled “query_timeout (integer)”This parameter specifies how many milliseconds OpenSIPS should wait for a query response from a Redis node.
Default value is “5000 ms”.
...# wait 1 seconds for Redis queriesmodparam("cachedb_redis", "query_timeout",1000)...shutdown_on_error (integer)
Section titled “shutdown_on_error (integer)”By setting this parameter to 1, OpenSIPS will abort startup if the initial connection to Redis is not possible. Runtime reconnect behavior is unaffected by this parameter, and is always enabled.
Default value is “0” (disabled).
...# abort OpenSIPS startup if Redis is downmodparam("cachedb_redis", "shutdown_on_error", 1)...Exported Functions
Section titled “Exported Functions”The module does not export functions to be used in configuration script.
Raw Query Syntax
Section titled “Raw Query Syntax”The cachedb_redis module allows to run RAW queries, thus taking full advantage of the capabilities of the back-end.
The query syntax is the typical REDIS one.
Here are a couple examples of running some Redis queries :
... $var(my_hash) = "my_hash_name"; $var(my_key) = "my_key_name"; $var(my_value) = "my_key_value"; cache_raw_query("redis","HSET $var(my_hash) $var(my_key) $var(my_value)"); cache_raw_query("redis","HGET $var(my_hash) $var(my_key)","$avp(result)"); xlog("We have fetched $avp(result) \n");... $var(my_hash) = "my_hash_name"; $var(my_key1) = "my_key1_name"; $var(my_key2) = "my_key2_name"; $var(my_value1) = "my_key1_value"; $var(my_value2) = "my_key2_value"; cache_raw_query("redis","HSET $var(my_hash) $var(my_key1) $var(my_value1)"); cache_raw_query("redis","HSET $var(my_hash) $var(my_key2) $var(my_value2)"); cache_raw_query("redis","HGETALL $var(my_hash)","$avp(result)");
$var(it) = 0; while ($(avp(result_final)[$var(it)]) != NULL) { xlog("Multiple key reply: - we have fetched $(avp(result_final)[$var(it)]) \n"); $var(it) = $var(it) + 1; }...Contributors
Section titled “Contributors”By Commit Statistics
Section titled “By Commit Statistics”Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)
| # | Name | DevScore | Commits | Lines++ | Lines— |
|---|---|---|---|---|---|
| 1. | Vlad Paiu (@vladpaiu) | 31 | 17 | 1429 | 44 |
| 2. | Razvan Crainea (@razvancrainea) | 17 | 14 | 155 | 60 |
| 3. | Liviu Chircu (@liviuchircu) | 14 | 10 | 128 | 77 |
| 4. | Bogdan-Andrei Iancu (@bogdan-iancu) | 7 | 5 | 10 | 8 |
| 5. | Stefan Darius (@dariusstefan) | 7 | 4 | 234 | 31 |
| 6. | jalung | 5 | 1 | 168 | 85 |
| 7. | Dan Pascu (@danpascu) | 3 | 1 | 15 | 15 |
| 8. | Kristian Høgh | 3 | 1 | 13 | 1 |
| 9. | Ezequiel Lovelle (@lovelle) | 3 | 1 | 11 | 4 |
| 10. | Peter Lemenkov (@lemenkov) | 3 | 1 | 1 | 1 |
All remaining contributors: Julián Moreno Patiño, Jarrod Baumann (@jarrodb), Vlad Patrascu (@rvlad-patrascu).
(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)
(2) including any documentation-related commits, excluding merge commits
(3) ignoring whitespace edits, renamed files and auto-generated files
By Commit Activity
Section titled “By Commit Activity”| # | Name | Commit Activity |
|---|---|---|
| 1. | Stefan Darius (@dariusstefan) | Jun 2026 - Jul 2026 |
| 2. | Razvan Crainea (@razvancrainea) | Feb 2012 - Jun 2026 |
| 3. | Bogdan-Andrei Iancu (@bogdan-iancu) | Oct 2014 - Jun 2020 |
| 4. | Liviu Chircu (@liviuchircu) | Mar 2014 - Jan 2020 |
| 5. | Dan Pascu (@danpascu) | May 2019 - May 2019 |
| 6. | Peter Lemenkov (@lemenkov) | Jun 2018 - Jun 2018 |
| 7. | Vlad Patrascu (@rvlad-patrascu) | May 2017 - May 2017 |
| 8. | Kristian Høgh | Apr 2016 - Apr 2016 |
| 9. | Julián Moreno Patiño | Feb 2016 - Feb 2016 |
| 10. | Jarrod Baumann (@jarrodb) | May 2015 - May 2015 |
All remaining contributors: jalung, Vlad Paiu (@vladpaiu), Ezequiel Lovelle (@lovelle).
(1) including any documentation-related commits, excluding merge commits
Documentation
Section titled “Documentation”Contributors
Section titled “Contributors”Last edited by: Razvan Crainea (@razvancrainea), Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Julián Moreno Patiño, Vlad Paiu (@vladpaiu).
License
Section titled “License”All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0