PHP Doku:: Returns server status - memcache.getserverstatus.html

Verlauf / Chronik / History: (3) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteMemcacheThe Memcache classMemcache::getServerStatus

Ein Service von Reinhard Neidl - Webprogrammierung.

The Memcache class

<<Memcache::getExtendedStats

Memcache::getStats>>

Memcache::getServerStatus

(PECL memcache >= 2.1.0)

Memcache::getServerStatusReturns server status

Beschreibung

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

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.

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


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
geoffrey dot hoffman at gmail dot com
21.07.2010 21:10
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.



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)