PHPDaemon\Cache\CappedStorage::invalidate PHP 메소드

invalidate() 공개 메소드

Invalidates cache element
public invalidate ( string $key ) : void
$key string Key
리턴 void
    public function invalidate($key)
    {
        $k = $this->hash($key);
        unset($this->cache[$k]);
    }