Cache\Adapter\Apc\ApcCachePool::fetchObjectFromCache PHP Method

fetchObjectFromCache() protected method

protected fetchObjectFromCache ( $key )
    protected function fetchObjectFromCache($key)
    {
        if ($this->skipIfCli()) {
            return [false, null, []];
        }
        $success = false;
        $data = apc_fetch($key, $success);
        return [$success, $data, []];
    }