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
//! Point-level operations: upserts (plain, conditional and raw), deletes and syncs.

mod delete;
mod sync;
mod upsert;

pub use self::delete::{delete_points, delete_points_by_filter};
pub use self::sync::{sync_points, sync_points_raw};
pub(crate) use self::upsert::retain_conditional_upsert_points;
pub use self::upsert::{conditional_upsert, upsert_points, upsert_points_raw};