mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
a630ee8dce
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
12 lines
247 B
PHP
12 lines
247 B
PHP
<?php
|
|
|
|
$CONFIG = [
|
|
'memcache.local' => '\\OC\\Memcache\\Redis',
|
|
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
'redis' => [
|
|
'host' => 'localhost',
|
|
'port' => 6379,
|
|
'timeout' => 0,
|
|
],
|
|
];
|