Note: the result of the function is cached. The cached is not automatically refreshed.
Call MemCache::getExtendedStats() to force a cache-update.
(PECL memcache >= 2.1.0)
Memcache::getServerStatus — Возвращает статус сервера
Memcache::getServerStatus() возвращает статус онлайн/офлайн серверов. Вы также можете использовать функцию memcache_get_server_status().
Замечание:
Эта функция была добавлена в Memcache версии 2.1.0.
host
Указывает на хост, на котором memcached прослушивает соединения.
port
Указывает на порт, на котором memcached прослушивает соединения.
Возвращает статус серверов. 0, в случае возникновения ошибки на сервере и значение, отличное от нуля, в противном случае
Пример #1 Пример использования Memcache::getServerStatus()
<?php
/* объектно-ориентированное API */
$memcache = new Memcache;
$memcache->addServer('memcache_host', 11211);
echo $memcache->getServerStatus('memcache_host', 11211);
/* процедурное API */
$memcache = memcache_connect('memcache_host', 11211);
echo memcache_get_server_status($memcache, 'memcache_host', 11211);
?>
Note: the result of the function is cached. The cached is not automatically refreshed.
Call MemCache::getExtendedStats() to force a cache-update.
Beware... this method does not actually attempt to connect to the server and port you specify! It is not a health check to tell whether memcached is actually running or not!
It merely returns the server status from the pool, which defaults to TRUE when using addServer( ) with only required arguments.
Try it - stop your memcached and run the sample code above - it will output 1.