mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 08:38:54 +01:00
fix Travis error for HHVM
This commit is contained in:
parent
3909c2fdf0
commit
237b8eceeb
@ -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