From 71ee565dfc5b40bee5ed8f66d75b4ff9f78a3976 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 30 Jul 2012 09:10:04 +0200 Subject: Support connections to memcached socket file (#1488577) --- program/include/rcube.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'program/include') diff --git a/program/include/rcube.php b/program/include/rcube.php index a39eab15c..ab5879dc5 100644 --- a/program/include/rcube.php +++ b/program/include/rcube.php @@ -193,11 +193,17 @@ class rcube $this->memcache = new Memcache; $this->mc_available = 0; - // add alll configured hosts to pool + // add all configured hosts to pool $pconnect = $this->config->get('memcache_pconnect', true); foreach ($this->config->get('memcache_hosts', array()) as $host) { - list($host, $port) = explode(':', $host); - if (!$port) $port = 11211; + if (substr($host, 0, 7) != 'unix://') { + list($host, $port) = explode(':', $host); + if (!$port) $port = 11211; + } + else { + $port = 0; + } + $this->mc_available += intval($this->memcache->addServer($host, $port, $pconnect, 1, 1, 15, false, array($this, 'memcache_failure'))); } -- cgit v1.2.3