Reverted PHP7 apcu as it seems to kill Doctrine Cache

This commit is contained in:
Andy Miller
2015-12-04 15:02:26 -07:00
parent 9179fbd1a2
commit af2eb2e75d
2 changed files with 103 additions and 41 deletions

View File

@@ -125,7 +125,7 @@ class Cache extends Getters
$driver_name = 'file';
if (!$setting || $setting == 'auto') {
if (extension_loaded('apc') || extension_loaded('apcu')) {
if (extension_loaded('apc')) {
$driver_name = 'apc';
} elseif (extension_loaded('wincache')) {
$driver_name = 'wincache';