Memcached::getStats

(PECL memcached >= 0.1.0)

Memcached::getStatsПолучает статистику о серверах в пуле

Описание

public array Memcached::getStats ( void )

Memcached::getStats() возвращает массив, содержащий статистику всех доступных memcache серверов. Ознакомьтесь также со спецификацией » memcache протокола для получения полной информации об этой статистике.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Список массивов со статистикой по каждому серверу, где каждый элемент- отдельный сервер.

Примеры

Пример #1 Пример использования Memcached::getStats()

<?php
$m 
= new Memcached();
$m->addServer('localhost'11211);

print_r($m->getStats());
?>

Результатом выполнения данного примера будет что-то подобное:

Array
(
    [localhost:11211] => Array
        (
            [pid] => 4933
            [uptime] => 786123
            [threads] => 1
            [time] => 1233868010
            [pointer_size] => 32
            [rusage_user_seconds] => 0
            [rusage_user_microseconds] => 140000
            [rusage_system_seconds] => 23
            [rusage_system_microseconds] => 210000
            [curr_items] => 145
            [total_items] => 2374
            [limit_maxbytes] => 67108864
            [curr_connections] => 2
            [total_connections] => 151
            [connection_structures] => 3
            [bytes] => 20345
            [cmd_get] => 213343
            [cmd_set] => 2381
            [get_hits] => 204223
            [get_misses] => 9120
            [evictions] => 0
            [bytes_read] => 9092476
            [bytes_written] => 15420512
            [version] => 1.2.6
        )

)

Коментарии

The method currently does not support the optional (and subject to change) type parameter for the stats command:
 - "items", "sizes", "slabs"

The documentation for the optional parameters can be found here (sections below General-purpose statistics):
http://code.sixapart.com/svn/memcached/trunk/server/doc/protocol.txt

The Memcache Extension can be uses to retrieve that information:
function.memcache-getstats
2009-12-17 13:13:34
http://php5.kiev.ua/manual/ru/memcached.getstats.html
the link to memcache protocol is out date. the new link is https://github.com/facebook/memcached/blob/master/doc/protocol.txt
2013-10-31 10:27:03
http://php5.kiev.ua/manual/ru/memcached.getstats.html
Автор:
new url for memcache protocol documents.
https://github.com/memcached/memcached/blob/master/doc/protocol.txt
2017-03-13 09:59:28
http://php5.kiev.ua/manual/ru/memcached.getstats.html

    Поддержать сайт на родительском проекте КГБ