mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
fix Travis error for HHVM
This commit is contained in:
parent
96caf6effd
commit
e3bdf129dc
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user