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
pub mod advice;
mod mmap_readonly;
mod mmap_rw;
mod ops;

pub use advice::{Advice, AdviceSetting, Madviseable};
pub use mmap_readonly::{MmapSliceReadOnly, MmapTypeReadOnly};
pub use mmap_rw::{Error, MmapBitSlice, MmapFlusher, MmapSlice, MmapType};
pub use ops::{
    MULTI_MMAP_IS_SUPPORTED, MULTI_MMAP_SUPPORT_CHECK_RESULT, TEMP_FILE_EXTENSION,
    create_and_ensure_length, open_read_mmap, open_write_mmap,
};
#[expect(deprecated, reason = "Re-exports of deprecated items")]
pub use ops::{
    transmute_from_u8, transmute_from_u8_to_slice, transmute_to_u8, transmute_to_u8_slice,
};