Cachearium\Backend\CacheMemcached::cleanP PHP 메소드

cleanP() 공개 메소드

(non-PHPdoc)
또한 보기: Cachearium\Backend\CacheRAM::cleanP()
public cleanP ( $base, $id )
    public function cleanP($base, $id)
    {
        // @codeCoverageIgnoreStart
        if (!$this->enabled) {
            throw new NotCachedException();
        }
        // @codeCoverageIgnoreEnd
        $group = $this->getGroupString(new CacheKey($base, $id));
        parent::cleanP($base, $id);
        $this->memcached->increment($group);
        return true;
    }