1. Installez les paquets nécessaires :
$ aptitude install memcached php5-memcached php5-apcu
2. Repérez le port utiliser par memcached :
$ ps ax | grep memcached
19875 ? Sl 0:00 /usr/bin/memcached -m 64 -p 11211 -u memcache -l 127.0.0.1
Ici, le port utilisé est le nombre qui se trouve après le -p, soit 11211
.
3. Éditez le fichier de configuration d'OwnCloud /var/www/owncloud/config/config.php et ajoutez ces lignes :
'memcache.local' => '\OC\Memcache\APCu',
'memcache.distributed' => '\OC\Memcache\Memcached',
'memcached_servers' =>
array(
array(
'localhost', 11211
)
),
4. Redémarrer le serveur, ici Apache :
$ service apache2 restart