Cache\Adapter\Redis\RedisCachePool::clearOneObjectFromCache PHP Метод

clearOneObjectFromCache() защищенный Метод

protected clearOneObjectFromCache ( $key )
    protected function clearOneObjectFromCache($key)
    {
        $this->commit();
        $this->preRemoveItem($key);
        $keyString = $this->getHierarchyKey($key, $path);
        $this->cache->incr($path);
        $this->clearHierarchyKeyCache();
        return $this->cache->del($keyString) >= 0;
    }