Hi
I set up Redis and added to my config, but after every major upgrade the config is reset from Redis to APCu. I dont get why that is the case. Redis is also recommended and used in the documentation for memcache.local
I am not sure what I am doing this wrong, the fact that it is reset automatically makes me frustrated as I can’t figure this out.
I am using the Apache Docker compose setup. I created an additional Redis container in the compose like
....
links:
- db
- redis
depends_on:
- db
- redis
....
redis:
image: redis:latest
restart: unless-stopped
command: redis-server
'memcache.local' => '\\OC\\Memcache\\Redis',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'redis',
'password' => '',
'port' => 6379,
),
this one
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'redis',
'password' => '',
'port' => 6379,
),