Was going mad, I figured getStatus() would return false on servers not responding. This is however not true, it will return:
array(1) {
["127.0.0.1:11112"]=>
string(11) "255.255.255"
}
On a failed connection.
(PECL memcached >= 0.1.5)
Memcached::getVersion — Obtem informações da versão do pool de servidores
Memcached::getVersion() retorna um array contendo as informações de versão para todos os servidores memcache disponíveis.
Esta função não possui parâmetros.
Array de versões de servidor, uma entrada por servidor.
Exemplo #1 Memcached::getVersion() exemplo
<?php
$m = new Memcached();
$m->addServer('localhost', 11211);
print_r($m->getVersion());
?>
O exemplo acima produzirá algo semelhante a:
Array ( [localhost:11211] => 1.2.6 )
Was going mad, I figured getStatus() would return false on servers not responding. This is however not true, it will return:
array(1) {
["127.0.0.1:11112"]=>
string(11) "255.255.255"
}
On a failed connection.