Skip to content

MEMCACHED module

This module is an implementation of a cache system designed to work with a memcached server. It uses libmemcached client library to connect to several memcached servers that store data. It uses the Key-Value interface exported from the core.

  • memory costs are no longer on the server
  • many servers may be used so the memory is virtually unlimited
  • the cache is persistent so a restart of the server will not affect the cache
  • memcached is an open-source project so it can be used to exchange data with various other applicationsr
  • servers may be grouped together (e.g. for security purposes : some can be inside a private network, some can be in a public one)
  • keys (in key:value pairs) may not contain spaces or control characters

None.

The following libraries or applications must be installed before running OpenSIPS with this module loaded:

Terminal window
...
$ wget http://download.tangent.org/libmemcached-0.31.tar.gz
$ tar -xzvf libmemcached-0.31.tar.gz
$ cd libmemcached-0.31
$ ./configure
$ make
$ sudo make install
...

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.

Set cachedb_url parameter
...
modparam("cachedb_memcached", "cachedb_url","memcached:group1://localhost:9999,127.0.0.1/");
modparam("cachedb_memcached", "cachedb_url","memcached:y://random_url:8888/");
...
Use memcached servers
...
cache_store("memcached:group1","key","$ru value");
cache_fetch("memcached:y","key",$avp(10));
cache_remove("memcached:group1","key");
...

The module does not export functions to be used in configuration script.

Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)

#NameDevScoreCommitsLines++Lines—
1.Vlad Paiu (@vladpaiu)221380178
2.Stefan Darius (@dariusstefan)7414532
3.Bogdan-Andrei Iancu (@bogdan-iancu)4221
4.Razvan Crainea (@razvancrainea)3122
5.Liviu Chircu (@liviuchircu)3111

(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

#NameCommit Activity
1.Stefan Darius (@dariusstefan)Jun 2026 - Jul 2026
2.Razvan Crainea (@razvancrainea)Jun 2026 - Jun 2026
3.Liviu Chircu (@liviuchircu)Sep 2014 - Sep 2014
4.Vlad Paiu (@vladpaiu)Oct 2011 - May 2014
5.Bogdan-Andrei Iancu (@bogdan-iancu)Jan 2013 - May 2014

(1) including any documentation-related commits, excluding merge commits

Last edited by: Razvan Crainea (@razvancrainea), Bogdan-Andrei Iancu (@bogdan-iancu), Vlad Paiu (@vladpaiu).

All documentation files (i.e. .md extension) are licensed under the Creative Common License 4.0