Welcome to mirror list, hosted at ThFree Co, Russian Federation.

redis.config.php « tests - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d3f1eca63eacaaea272cfceff32a39cc67d3156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

$CONFIG = [
	'memcache.local' => '\\OC\\Memcache\\Redis',
	'memcache.distributed' => '\\OC\\Memcache\\Redis',
	'memcache.locking' => '\\OC\\Memcache\\Redis',
	'redis' => [
		'host' => 'cache',
		'port' => 6379,
		'timeout' => 0,
	],
];