CacheEngine::getMemInfo PHP Method

getMemInfo() abstract public method

Returns an array of shared memory data
abstract public getMemInfo ( ) : array
return array
    public abstract function getMemInfo();

Usage Example

Example #1
0
 /**
  * Retrieves shared memory allocation information.
  *
  * @return mixed
  *               array Shared memory allocation data
  *               boolean FALSE on failure
  */
 public function meminfo()
 {
     if (!self::$m_enabled) {
         return false;
     }
     return $this->m_cacheEngine->getMemInfo();
 }