From: Domas Mituzas Date: Tue, 27 Oct 2009 07:36:27 +0000 (+0000) Subject: set read/write timeouts to 50ms down from 1s X-Git-Tag: 1.31.0-rc.0~39084 X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=commitdiff_plain;h=89175efa896272930ca522b53c9559485ff0bf7f;p=lhc%2Fweb%2Fwiklou.git set read/write timeouts to 50ms down from 1s --- diff --git a/includes/memcached-client.php b/includes/memcached-client.php index 040c08ac2e..6dafade31a 100644 --- a/includes/memcached-client.php +++ b/includes/memcached-client.php @@ -258,8 +258,8 @@ class memcached $this->_cache_sock = array(); $this->_host_dead = array(); - $this->_timeout_seconds = 1; - $this->_timeout_microseconds = 0; + $this->_timeout_seconds = 0; + $this->_timeout_microseconds = 50000; $this->_connect_timeout = 0.01; $this->_connect_attempts = 2;