qdrant-edge 0.7.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
mod check;
mod fadvise;
mod r#move;
mod ops;
mod safe_delete;
mod sync;

pub use check::{FsCheckResult, check_fs_info, check_mmap_functionality};
pub use fadvise::{OneshotFile, clear_disk_cache};
pub use r#move::{move_dir, move_file};
pub use ops::{atomic_save, atomic_save_bin, atomic_save_json, read_bin, read_json};
pub use safe_delete::{
    safe_delete_in_tmp, safe_delete_with_suffix, sync_parent_dir, sync_parent_dir_async,
};
pub use sync::bulk_sync_dir;