Delete will place a delete marker and leave all revisions. A history of a deleted key can still be retrieved by using the History method or a watch on the key. [Delete] is a non-destructive operation and will not remove any previous revisions from the underlying stream. [LastRevision] option can be
(ctx context.Context, key string, opts ...KVDeleteOpt)
| 135 | // [LastRevision] option can be specified to only perform delete if the |
| 136 | // latest revision the provided one. |
| 137 | Delete(ctx context.Context, key string, opts ...KVDeleteOpt) error |
| 138 | |
| 139 | // Purge will place a delete marker and remove all previous revisions. |
| 140 | // Only the latest revision will be preserved (with a delete marker). |
no outgoing calls