stats() public method

Get the statistics output from the current memcache pool.
public stats ( ) : array
return array The output from Memcache::getExtendedStats() using the current configuration values.
示例#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();
 }