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
pub mod empty_sparse_vector_storage;
pub mod mmap_sparse_vector_storage;
pub mod read_only;
mod stored_sparse_vectors;
pub mod volatile_sparse_vector_storage;

pub(crate) use stored_sparse_vectors::StoredSparseVector;

use crate::segment::types::Distance;

pub const SPARSE_VECTOR_DISTANCE: Distance = Distance::Dot;