Doctrine\Common\Cache\MemcacheCache::doDelete PHP Method

doDelete() protected method

protected doDelete ( $id )
    protected function doDelete($id)
    {
        // Memcache::delete() returns false if entry does not exist
        return $this->memcache->delete($id) || !$this->doContains($id);
    }