getStats() public méthode

public getStats ( )
Exemple #1
0
 public function getStats()
 {
     return $this->_cacheImplement->getStats();
 }
Exemple #2
0
 /**
  * {@inheritdoc}
  */
 public function getStats()
 {
     return $this->provider->getStats();
 }
Exemple #3
0
 /**
  * Retrieves cached information from the data store.
  *
  * The server's statistics array has the following values:
  *
  * - <b>hits</b>
  * Number of keys that have been requested and found present.
  *
  * - <b>misses</b>
  * Number of items that have been requested and not found.
  *
  * - <b>uptime</b>
  * Time that the server is running.
  *
  * - <b>memory_usage</b>
  * Memory used by this server to store items.
  *
  * - <b>memory_available</b>
  * Memory allowed to use for storage.
  *
  * @since 2.2
  *
  * @return array|null An associative array with server's statistics if available, NULL otherwise.
  */
 public function getStats()
 {
     return $this->cache->getStats();
 }