eAccelerator is dead

This commit is contained in:
slawkens
2024-01-30 23:13:57 +01:00
parent 13a2570ad0
commit 1bb6e61583
3 changed files with 1 additions and 63 deletions

View File

@@ -56,10 +56,6 @@ class Cache
self::$instance = new APCu($prefix);
break;
case 'eaccelerator':
self::$instance = new eAccelerator($prefix);
break;
case 'xcache':
self::$instance = new XCache($prefix);
break;
@@ -93,8 +89,6 @@ class Cache
return 'apc';
else if (function_exists('apcu_fetch'))
return 'apcu';
else if (function_exists('eaccelerator_get'))
return 'eaccelerator';
else if (function_exists('xcache_get') && ini_get('xcache.var_size'))
return 'xcache';