mirror of
https://github.com/getgrav/grav.git
synced 2026-05-07 17:37:29 +02:00
Reverted PHP7 apcu as it seems to kill Doctrine Cache
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user