there are two memcache libraries in php
For those confuse about the memcached extension and the memcache extension, the short story is that both of them are clients of memcached server, and the memcached extension offer more features than the memcache extension.
This commit is contained in:
@ -907,7 +907,7 @@ function serendipity_smarty_init($vars = array()) {
|
||||
|
||||
// define cache resources to load with smarty - see smarty class
|
||||
@define('APC_EXTENSION_LOADED', extension_loaded('apc') && ini_get('apc.enabled'));
|
||||
@define('MEMCACHE_EXTENSION_LOADED', class_exists('Memcache',false) && extension_loaded("memcached"));
|
||||
@define('MEMCACHE_EXTENSION_LOADED', class_exists('Memcache',false) && (extension_loaded("memcached") || extension_loaded("memcache")));
|
||||
|
||||
// Default Smarty Engine will be used
|
||||
@define('SMARTY_DIR', S9Y_PEAR_PATH . 'Smarty/libs/');
|
||||
|
Reference in New Issue
Block a user