CampCache::delete PHP 메소드

delete() 공개 메소드

Remove the object with given cache key from cache.
public delete ( $p_key ) : boolean
$p_key The cache key for the object.
리턴 boolean TRUE on success, FALSE on failure
    public function delete($p_key)
    {
        if (!self::$m_enabled) {
            return false;
        }
        return $this->m_cacheEngine->deleteValue($this->genKey($p_key));
    }