PHP 8.4.6 Released!

Memcache::getServerStatus

(PECL memcache >= 2.1.0)

Memcache::getServerStatusRetorna o status do servidor

Descrição

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

Memcache::getServerStatus() retorna o status online/offline dos servidores. A função memcache_get_server_status() também pode ser usada.

Nota:

Esta função foi adicionada ao Memcache versão 2.1.0.

Parâmetros

host

Aponta para o host onde o memcached está escutando conexões.

port

Aponta para a porta onde o memcached está escutando conexões.

Valor Retornado

Retorna o status do servidor. 0 se o servidor falhou, diferente de zero caso contrário.

Exemplos

Exemplo #1 Exemplo de Memcache::getServerStatus()

<?php

/* API orientada a objeto */
$memcache = new Memcache;
$memcache->addServer('memcache_host', 11211);
echo
$memcache->getServerStatus('memcache_host', 11211);

/* API procedural */
$memcache = memcache_connect('memcache_host', 11211);
echo
memcache_get_server_status($memcache, 'memcache_host', 11211);

?>

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 2 notes

up
4
geoffrey dot hoffman at gmail dot com
14 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.
up
0
tom at all dash community dot de
13 years ago
Note: the result of the function is cached. The cached is not automatically refreshed.

Call MemCache::getExtendedStats() to force a cache-update.
To Top