nextcloud配置缓存
nextcloud
/config/config.php 'memcache.local' => '\OC\Memcache\APCu', 'memcache.locking' => '\OC\Memcache\Redis', 'redis' => [ 'host' => '127.0.0.1', 'port' => 6379, ], 参考文档 https://docs.nextcloud.com/server/14/admin_manual/configuration_server/caching_configuration.html 小型/私人家庭服务器 仅使用 APCu: 'memcache.local' => '\OC\Memcache\APCu' , 小型组织,单服务器设置 使用 APCu 进行本地缓存,使用 Redis 进行
Read more...