sochdb-vector 2.0.8

Streaming elimination vector search engine for SochDB - CPU-first ANN with RDF + BPS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Segment format and reading functionality.
//!
//! Segments are immutable mmap-able files with SoA layouts for streaming SIMD.

pub mod bps;
pub mod format;
pub mod rdf;
pub mod reader;
pub mod rerank;
pub mod writer;

pub use format::*;
pub use reader::Segment;
pub use writer::SegmentWriter;