nextcloud: use redis for file locking cache

This commit is contained in:
Wonderfall
2016-10-16 14:04:01 +02:00
parent e0e21acf73
commit 038d0bffcd
10 changed files with 58 additions and 7 deletions

View File

@ -29,6 +29,13 @@ cat > $CONFIGFILE <<EOF;
'memcache.local' => '\OC\Memcache\APCu',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => '/tmp/redis.sock',
'port' => 0,
'timeout' => 0.0,
),
'instanceid' => '$instanceid',
);
?>