Re-exports§
pub use merge::Query;pub use persistent_layer::LayerHeader as PersistentLayerHeader;pub use persistent_layer::LayerHeaderV39 as PersistentLayerHeaderV39;pub use persistent_layer::LayerInfo as PersistentLayerInfo;pub use persistent_layer::LayerInfoV39 as PersistentLayerInfoV39;
Modules§
Structs§
- Compaction
Counters - Metrics related to LSM tree churn, layer depths, and compaction performance.
- LSMTree
- LSMTree manages a tree of layers to provide a key/value store. Each layer contains deltas on the preceding layer. The top layer is an in-memory mutable layer. Layers can be compacted to form a new combined layer.
- Layer
Set - A LayerSet provides a snapshot of the layers at a particular point in time, and allows you to get an iterator. Iterators borrow the layers so something needs to hold reference count.
- Locked
Layer - This is an RAII wrapper for a layer which holds a lock on the layer (via the Layer::lock method).
- Tree
Counters - Global counters and metrics for an LSM tree’s lifetime.
Enums§
Constants§
Traits§
- Yielder
- A yielder can be used during compactions which are low priority.
Functions§
- compact_
with_ iterator - Writes the items yielded by the iterator into the supplied object.
- layers_
from_ handles