Type Alias SeqNo

Source
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.

Stale items are lazily garbage-collected during compaction.