contributions/cache.memcache/start.inc.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * @defgroup Memcache 00004 * @ingroup Cache 00005 * 00006 * Replace DB-based cache and sessions with Memcache based - that is: store cache in memory 00007 * 00008 * @section Usage 00009 * 00010 * When enabled, the cache and session persistence gets changed to Memcache. Nothing else to do. 00011 * 00012 * @section Notes Additional notes 00013 * 00014 * This module requires either memcache or memcached extension to be installed and 00015 * configured properly. 00016 */ 00017 require_once dirname(__FILE__) . '/cache.memcache.impl.php'; 00018 Cache::set_implementation(new CacheMemcacheImpl()); 00019