Note: the result of the function is cached. The cached is not automatically refreshed.
Call MemCache::getExtendedStats() to force a cache-update.
Memcache::getServerStatus
(PECL memcache >= 2.1.0)
Memcache::getServerStatus — Retourne le statut du serveur
Description
int Memcache::getServerStatus
( string
$host
[, int $port = 11211
] )Memcache::getServerStatus() retourne le statut en ligne/hors ligne du serveur. Vous pouvez également utiliser la fonction memcache_get_server_status().
Note:
Cette fonction a été ajoutée en Memcache version 2.1.0.
Liste de paramètres
-
host -
Pointe à l'hôte où memcache écoute pour des connexions.
-
port -
Pointe au port où memcache écoute pour des connexions.
Valeurs de retour
Retourne le statut du serveur. 0 si le serveur échoue, une valeur différente de zéro sinon.
Exemples
Exemple #1 Exemple avec Memcache::getServerStatus()
<?php
/* API orientée objet */
$memcache = new Memcache;
$memcache->addServer('memcache_host', 11211);
echo $memcache->getServerStatus('memcache_host', 11211);
/* API procédurale */
$memcache = memcache_connect('memcache_host', 11211);
echo memcache_get_server_status($memcache, 'memcache_host', 11211);
?>
Voir aussi
- Memcache::addServer() - Ajoute un serveur memcache à la liste de connexion
- Memcache::setServerParams() - Modifit les paramètres et les statuts du serveur pendant l'exécution
tom at all dash community dot de ¶
1 year ago
geoffrey dot hoffman at gmail dot com ¶
2 years ago
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.
