Cache\Adapter\Memcache\MemcacheCachePool::fetchObjectFromCache PHP Method

fetchObjectFromCache() protected method

protected fetchObjectFromCache ( $key )
    protected function fetchObjectFromCache($key)
    {
        if (false === ($result = unserialize($this->cache->get($key)))) {
            return [false, null, []];
        }
        return $result;
    }