Lavender\Cloud\Sina\Cache\MemcacheStore::forget PHP Method

forget() public method

Remove an item from the cache.
public forget ( string $key ) : void
$key string
return void
    public function forget($key)
    {
        $this->memcache->delete($this->prefix . $key);
    }