Cachearium\Backend\CacheMemcached::cleanP PHP Method

cleanP() public method

(non-PHPdoc)
See also: 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;
    }