Skip to main content

sochdb_vector/segment/
mod.rs

1//! Segment format and reading functionality.
2//!
3//! Segments are immutable mmap-able files with SoA layouts for streaming SIMD.
4
5pub mod bps;
6pub mod format;
7pub mod rdf;
8pub mod reader;
9pub mod rerank;
10pub mod writer;
11
12pub use format::*;
13pub use reader::Segment;
14pub use writer::SegmentWriter;