downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Memcache::getStats> <Memcache::getExtendedStats
Last updated: Fri, 30 Oct 2009

view this page in

Memcache::getServerStatus

(PECL memcache >= 2.1.0)

Memcache::getServerStatusReturns server status

Beschreibung

int Memcache::getServerStatus ( string $host [, int $port ] )

Memcache::getServerStatus() returns a the servers online/offline status. You can also use memcache_get_server_status() function.

Hinweis: This function has been added to Memcache version 2.1.0.

Parameter-Liste

host

Point to the host where memcached is listening for connections.

port

Point to the port where memcached is listening for connections. This parameter is optional and its default value is 11211.

Rückgabewerte

Returns a the servers status. 0 if server is failed, non-zero otherwise

Beispiele

Beispiel #1 Memcache::getServerStatus() example

<?php

/* OO API */
$memcache = new Memcache;
$memcache->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);

?>

Siehe auch



add a note add a note User Contributed Notes
Memcache::getServerStatus
There are no user contributed notes for this page.

Memcache::getStats> <Memcache::getExtendedStats
Last updated: Fri, 30 Oct 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites