CacheTool\Proxy\ApcProxy::apc_cache_info PHP Method

apc_cache_info() public method

Retrieves cached information from APC's data store
Since: 2.0.0
public apc_cache_info ( string $cache_type = "", boolean $limited = false ) : boolean
$cache_type string If cache_type is "user", information about the user cache will be returned. If cache_type is "filehits", information about which files have been served from the bytecode cache for the current request will be returned. This feature must be enabled at compile time using --enable-filehits . If an invalid or no cache_type is specified, information about the system cache (cached files) will be returned.
$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 apc_cache_info($cache_type = "", $limited = false)
    {
        $code = new Code();
        $code->addStatement(sprintf('return apc_cache_info(%s, %s);', var_export($cache_type, true), var_export($limited, true)));
        return $this->adapter->run($code);
    }