Horde_Memcache::stats PHP 메소드

stats() 공개 메소드

Get the statistics output from the current memcache pool.
public stats ( ) : array
리턴 array The output from Memcache::getExtendedStats() using the current configuration values.
    public function stats()
    {
        return $this->_memcache instanceof Memcached ? $this->_memcache->getStats() : $this->_memcache->getExtendedStats();
    }

Usage Example

예제 #1
0
파일: Memcache.php 프로젝트: horde/horde
 /**
  * Get the statistics output from the current memcache pool.
  *
  * @see Horde_Memcache#stats()
  */
 public function stats()
 {
     return $this->_memcache->stats();
 }