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

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'cluster.markdown')
-rw-r--r--cluster.markdown8
1 files changed, 2 insertions, 6 deletions
diff --git a/cluster.markdown b/cluster.markdown
index 2ba3ee06..336fcc49 100644
--- a/cluster.markdown
+++ b/cluster.markdown
@@ -13,15 +13,11 @@ To maintain consistency with the RedisArray class, one can create and connect to
$obj_cluster = new RedisCluster(NULL, Array('host:7000', 'host:7001', 'host:7003'));
// Connect and specify timeout and read_timeout
-$obj_cluster = new RedisCluster(
- NULL, Array("host:7000", "host:7001"), 1.5, 1.5
-);
+$obj_cluster = new RedisCluster(NULL, Array("host:7000", "host:7001"), 1.5, 1.5);
// Connect with read/write timeout as well as specify that phpredis should use
// persistent connections to each node.
-$obj_cluster = new RedisCluster(
- NULL, Array("host:7000", "host:7001"), 1.5, 1.5, true
-);
+$obj_cluster = new RedisCluster(NULL, Array("host:7000", "host:7001"), 1.5, 1.5, true);
</pre>