Lavender\Cloud\Sina\Cache\KvdbStore::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->kvdb->delete($this->prefix . $key);
    }