CacheTool\Proxy\PhpProxy::stat_realpath_size PHP Method

stat_realpath_size() public method

Returns how much memory realpath cache is using.
Since: 5.3.2
public stat_realpath_size ( ) : integer
return integer Memory usage in bytes
    public function stat_realpath_size()
    {
        $code = new Code();
        $code->addStatement('return realpath_cache_size();');
        return $this->adapter->run($code);
    }