vtpl 0.1.0

Vector-Threaded Posting Lists — fused n-gram + vector search in a single index pass
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod cache;
pub mod index;
pub mod ngram;
pub mod parallel;
pub mod posting;
pub mod pq;

pub use cache::{CacheConfig, CacheStats, CachedIndex};
pub use index::{ScoredResult, VtplIndex};
pub use parallel::ParallelBuilder;
pub use posting::{ChunkId, VtplEntry};
pub use pq::{l2_normalize, PqCode, PqCodebook, PQ_BYTES};