mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 09:59:46 +00:00
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,
|
|
],
|
|
];
|