Status: IN
Deletion is represented as `TOMBSTONE = b""` (empty bytes), which means empty-byte-string values and deleted keys are indistinguishable at the storage layer.
Source: entries/2026/05/28/log-structured-merge-tree-lsm.md
TOMBSTONE = b""
def delete(self, key):
self.put(key, TOMBSTONE)