SingleDelete #56
Labels
api
documentation
Improvements or additions to documentation
enhancement
New feature or request
examples
test
fjall-rs/lsm-tree#38
Update queue example
SingleDeletes are a very useful operation if any given key is only ever inserted once and never updated (like a Queue)... With standard tombstones, the tombstones would fill up one side of the keyspace, making operations like first_key_value become scan operations until the tombstones are cleaned up by arriving in the last level.
A SingleDelete would vanish when paired with an insert during compaction, causing no tombstone problem, the caveat being that older data is resurrected, so SingleDeletes are only useful for very specific workloads.
The text was updated successfully, but these errors were encountered: