aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-engine
diff options
context:
space:
mode:
authorClaire Villard <claire.villard@sonarsource.com>2024-10-03 11:59:29 +0200
committersonartech <sonartech@sonarsource.com>2024-10-14 20:03:02 +0000
commit112170c17981556868bd0aedbbb636d1acdc8588 (patch)
treee666a2fe3baeb87d006755f20666581e034b585f /sonar-scanner-engine
parentd7c1632113c8c1fe15766e3728a831a146c1de21 (diff)
downloadsonarqube-112170c17981556868bd0aedbbb636d1acdc8588.tar.gz
sonarqube-112170c17981556868bd0aedbbb636d1acdc8588.zip
SONAR-23213 The Measures migration helper is available only on Enterprise and DataCenter editions
Diffstat (limited to 'sonar-scanner-engine')
0 files changed, 0 insertions, 0 deletions
stable26 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/tests/redis-cluster.config.php
blob: e255d123f605202346738d0d1bba79d1cda92c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

$CONFIG = [
	'memcache.local' => '\\OC\\Memcache\\Redis',
	'memcache.distributed' => '\\OC\\Memcache\\Redis',
	'memcache.locking' => '\\OC\\Memcache\\Redis',
	'redis.cluster' => [
		'seeds' => [ // provide some/all of the cluster servers to bootstrap discovery, port required
			'cache-cluster:7000',
			'cache-cluster:7001',
			'cache-cluster:7002',
			'cache-cluster:7003',
			'cache-cluster:7004',
			'cache-cluster:7005'
		],
		'timeout' => 0.0,
		'read_timeout' => 0.0,
		'failover_mode' => \RedisCluster::FAILOVER_ERROR
	],
];