Memcache::getServerStatus
Returns server status
&reftitle.description;
intMemcache::getServerStatus
stringhost
intport11211
Memcache::getServerStatus returns a the servers
online/offline status. You can also use memcache_get_server_status
function.
This function has been added to Memcache version 2.1.0.
&reftitle.parameters;
host
Point to the host where memcached is listening for connections.
port
Point to the port where memcached is listening for connections.
&reftitle.returnvalues;
Returns a the servers status. 0 if server is failed, non-zero otherwise
&reftitle.examples;
Memcache::getServerStatus example
addServer('memcache_host', 11211);
echo $memcache->getServerStatus('memcache_host', 11211);
/* procedural API */
$memcache = memcache_connect('memcache_host', 11211);
echo memcache_get_server_status($memcache, 'memcache_host', 11211);
?>
]]>
&reftitle.seealso;
Memcache::addServer
Memcache::setServerParams