Frequently Asked Question
APCu für Nextcloud
Last Updated a year ago
Um APCu zu nutzen muss serverseitig APCu für PHP aktiviert sein und folgende Datei erstellt werden:
/config/cache.config.php:
<?php if (PHP_SAPI !== 'cli') { $cache = '\OC\Memcache\APCu'; } else { $cache = ''; } $CONFIG = array ( 'memcache.local' =--> $cache, );