Doctrine\Common\Cache\MemcacheCache::doContains PHP 메소드

doContains() 보호된 메소드

protected doContains ( $id )
    protected function doContains($id)
    {
        $flags = null;
        $this->memcache->get($id, $flags);
        //if memcache has changed the value of "flags", it means the value exists
        return $flags !== null;
    }