diff options
author | Thomas B. <thomas@roundcube.net> | 2015-02-11 21:32:11 +0100 |
---|---|---|
committer | Thomas B. <thomas@roundcube.net> | 2015-02-11 21:32:11 +0100 |
commit | 38b42e96af6a8b770510d1a0b247088e7a4648f4 (patch) | |
tree | 4b254724f94e41488a45f6b5bfc1ac9cb20b2459 /program/lib | |
parent | 190ae4f800b2d40c0edb579b34c1b188089c2a6a (diff) | |
parent | c3e441044d07cb89c12fb52b6adc02c4ca4ad2cc (diff) |
Merge pull request #265 from kanarip/master
Allow the timeout and retry interval for memcached to be configured
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php index 819c7f848..3aca88843 100644 --- a/program/lib/Roundcube/rcube.php +++ b/program/lib/Roundcube/rcube.php @@ -215,7 +215,10 @@ class rcube $this->mc_available = 0; // add all configured hosts to pool - $pconnect = $this->config->get('memcache_pconnect', true); + $pconnect = $this->config->get('memcache_pconnect', true); + $timeout = $this->config->get('memcache_timeout', 1); + $retry_interval = $this->config->get('memcache_retry_interval', 15); + foreach ($this->config->get('memcache_hosts', array()) as $host) { if (substr($host, 0, 7) != 'unix://') { list($host, $port) = explode(':', $host); @@ -226,7 +229,7 @@ class rcube } $this->mc_available += intval($this->memcache->addServer( - $host, $port, $pconnect, 1, 1, 15, false, array($this, 'memcache_failure'))); + $host, $port, $pconnect, 1, $timeout, $retry_interval, false, array($this, 'memcache_failure'))); } // test connection and failover (will result in $this->mc_available == 0 on complete failure) |