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
16
//! Per-operation read implementations on [`EdgeReadView`](crate::read_view::EdgeReadView): one
//! file per operation, all running over the same consistent segment snapshot.

mod count;
mod facet;
mod grouping;
mod info;
mod matrix;
mod query;
mod retrieve;
mod scroll;
mod search;

pub use self::grouping::Group;
pub use self::info::ShardInfo;
pub use self::matrix::SearchMatrixResponse;