Nirjonadda
Well-known member
I am using PHP 7.1.2 , I installed Zend OPcache and APCu. How can I use APCu? Zend OPcache support and APCu as user cache.
If I add this to my config.php then does work the Zend OPcache and APCu cache?
If I add this to my config.php then does work the Zend OPcache and APCu cache?
Code:
$config['cache']['enabled'] = true;
$config['cache']['cacheSessions'] = true;
$config['cache']['backend'] = 'APCu';
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';