Memcache

Memcache is a caching technology developed by Brad Fitzpatrick for Livejournal.

SUPPORT FOR MEMCACHE IS EXPERIMENTAL AND MAY BE CHANGED / WITHDRAWN WITHOUT WARNING.

Installation requirements:

  • php5-memcache
  • memcached

Configuration:

Uncomment and populate the following sections in settings.php

    $CONFIG->memcache = true;
   
    $CONFIG->memcache_servers = array (
        array('server1', 11211),
        array('server2', 11211)
    );