Nemskiller yeah. When I’ve done the 4th thing you gave me, add these
‘memcache.local’ => ‘\OC\Memcache\APCu’,
‘memcache.distributed’ => ‘\OC\Memcache\Redis’,
‘redis’ => [
‘host’ => ‘localhost’,
‘port’ => 0,
‘dbindex’ => 0,
‘password’ => ‘secret’,
‘timeout’ => 1.5,
],
And it works.
Then I tried the @Krischan config
‘memcache.local’ => ‘\OC\Memcache\APCu’,
‘memcache.locking’ => ‘\OC\Memcache\Redis’,
‘memcache.distributed’ => ‘\OC\Memcache\Redis’,
‘redis’ => [
‘host’ => ‘localhost’,
‘port’ => 6379,
],
And it works too… Funny but true!
So everything’s fine right now?
I Just delete
'memcache.local' => '\OC\Memcache\APCu',
And now it shows me that I have to install memcached and so on. Why if I use redis? Or redis should be in line with Apcu anyway?