Reservations have been found in your configuration. The database is being used to block transactional files. To increase performance, configure memcache caching if available

Hi I have this message in administration settings. I have all apps up to date. I’m using ubuntu server for my nextcloud, can someone write me step by step instructions how to install, conffigure etc. memchache to get rid off this alert?

For now i just installed redis with apt install redis php-redis :stuck_out_tongue:

Ok, I manage to figure it out myself, so for those who dont know how:

Instal redis:
apt install redis php-redis

Configure redis:

sudo nano /etc/redis/redis.conf

Uncomment those lines and change to 777:
unixsocket /var/run/redis/redis.sock
unixsocketperm 777

Restart redis:
systemctl restart redis

Than configure your nextcloud config:

sudo nano /var/www/html/nextcloud/config/config.php

Change line: memcache.local to :

'memcache.local' => '\\OC\\Memcache\\Redis',
  'memcache.distributed' => '\\OC\\Memcache\\Redis',
  'filelocking.enabled' => true,
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' => 
  array (
    'host' => '/run/redis/redis-server.sock',
    'port' => 0,
    'timeout' => 0,
  ),