pub type SeqNo = u64;
Expand description
Sequence number, a monotonically increasing counter
Values with the same seqno are part of the same batch.
A value with a higher sequence number shadows an item with the same key and lower sequence number. This enables MVCC.
Items are lazily garbage-bollected during compaction.