diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-05-02 21:46:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-02 21:46:34 +0200 |
commit | 34b8ea6ebf0cbe873804e1fb8d7d87859d3bb8e9 (patch) | |
tree | 5edc13347cb4eb43cd0708c0526b133e16fe25e3 | |
parent | 6d9cb62f79a634aaf68daa8abb786bf7f92a0c0a (diff) | |
parent | 1e75206670f2f2b15f1f9d1de1bce94892c64c7f (diff) | |
download | nextcloud-server-34b8ea6ebf0cbe873804e1fb8d7d87859d3bb8e9.tar.gz nextcloud-server-34b8ea6ebf0cbe873804e1fb8d7d87859d3bb8e9.zip |
Merge pull request #4664 from nextcloud/redis-sample-config.php
Improve documentation for redis cluster
-rw-r--r-- | config/config.sample.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 4646de33082..d106d03f602 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1062,7 +1062,8 @@ $CONFIG = array( * Only for use with Redis Clustering, for Sentinel-based setups use the single * server configuration above, and perform HA on the hostname. * - * Redis Cluster support requires the php module phpredis in version 3.0.0 or higher. + * Redis Cluster support requires the php module phpredis in version 3.0.0 or + * higher for PHP 7+ or phpredis in version 2.2.8 for PHP 5.6. * * Available failover modes: * - \RedisCluster::FAILOVER_NONE - only send commands to master nodes (default) |