qdrant-edge 0.8.0

A lightweight, in-process vector search engine designed for embedded devices, autonomous systems, and mobile agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! TurboQuant-backed multivector storage.
//!
//! Multi counterpart of the dense TurboQuant storages, mirroring the reference
//! [`multi_dense`](crate::vector_storage::multi_dense) module. Multivectors are
//! always stored in the appendable chunked layout, so — unlike the dense
//! storage — there is a single writable backend and no layout split (no volatile
//! or single-file variant).

pub mod appendable_mmap_multi_turbo_vector_storage;
pub mod read_only;

pub(crate) use self::appendable_mmap_multi_turbo_vector_storage::OFFSETS_DIR_PATH;
pub use self::appendable_mmap_multi_turbo_vector_storage::{
    AppendableMmapMultiTurboVectorStorage, open_appendable_turbo_multi_vector_storage,
};