#apt-get install memcached php-memcached php-redis redis-server
#nano /etc/redis/redis.conf
requirepass REDIS-PASSWORD
#vi owncloud/config/config.php
以下を追加
'asset-pipeline.enabled' => true,
'memcache.local' => '\\OC\\Memcache\\Memcached',
'filelocking.enabled' => 'true',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'localhost',
'port' => 6379,
'timeout' => 0,
'dbindex' => 0,
'password' => 'REDIS-PASSWORD',
),
Views: 45