diff options
Diffstat (limited to 'tests/redis-cluster.config.php')
-rw-r--r-- | tests/redis-cluster.config.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/redis-cluster.config.php b/tests/redis-cluster.config.php new file mode 100644 index 00000000000..c7df2a91854 --- /dev/null +++ b/tests/redis-cluster.config.php @@ -0,0 +1,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 + 'localhost:7000', + 'localhost:7001', + 'localhost:7002', + 'localhost:7003', + 'localhost:7004', + 'localhost:7005' + ], + 'timeout' => 0.0, + 'read_timeout' => 0.0, + 'failover_mode' => \RedisCluster::FAILOVER_ERROR + ], +]; |