Add APCu to PHP CLI

This commit is contained in:
exu 2024-01-10 19:53:46 +01:00
parent ad9439afe1
commit 7a71c3f651

View File

@ -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]