From 7a71c3f651121373f48356b12ce10fe93945f7b5 Mon Sep 17 00:00:00 2001 From: exu Date: Wed, 10 Jan 2024 19:53:46 +0100 Subject: [PATCH] Add APCu to PHP CLI --- pages/02.linux/nextcloud/default.en.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pages/02.linux/nextcloud/default.en.md b/pages/02.linux/nextcloud/default.en.md index 066185c..ecd1513 100644 --- a/pages/02.linux/nextcloud/default.en.md +++ b/pages/02.linux/nextcloud/default.en.md @@ -135,6 +135,15 @@ apt install php-apcu 'memcache.local' => '\OC\Memcache\APCu', ``` +Enable APCu for the PHP CLI as well. + +`/etc/php/8.2/cli/php.ini` + +``` +... +apc.enable_cli=1 +``` + ### Redis memcache [shroot]