CacheTool\Proxy\ApcuProxy::apcu_cache_info PHP Method

apcu_cache_info() public method

Retrieves cached information from APCu's data store
Since: 2.0.0
public apcu_cache_info ( boolean $limited = false ) : boolean
$limited boolean If limited is TRUE, the return value will exclude the individual list of cache entries. This is useful when trying to optimize calls for statistics gathering.
return boolean Array of cached data (and meta-data) or FALSE on failure
    public function apcu_cache_info($limited = false)
    {
        $code = new Code();
        $code->addStatement(sprintf('return apcu_cache_info(%s);', var_export($limited, true)));
        return $this->adapter->run($code);
    }