fix Travis error for HHVM

This commit is contained in:
Ralf Becker 2016-07-28 13:51:47 +02:00
parent 96caf6effd
commit e3bdf129dc

View File

@ -92,10 +92,14 @@ class Memcached extends Base implements ProviderMultiple
\Memcached::OPT_LIBKETAMA_COMPATIBLE => true,
// automatic failover and disabling of failed nodes
\Memcached::OPT_SERVER_FAILURE_LIMIT => 2,
\Memcached::OPT_AUTO_EJECT_HOSTS => true,
// setting a prefix for all keys
\Memcached::OPT_PREFIX_KEY => $prefix,
));
// automatic disabling of failed nodes
if (@constant('Memcached::OPT_AUTO_EJECT_HOSTS'))
{
$this->memcache->setOption(\Memcached::OPT_AUTO_EJECT_HOSTS, true);
}
// use igbinary, if available
if (\Memcached::HAVE_IGBINARY)
{