qdrant-edge 0.7.2

A lightweight, in-process vector search engine designed for embedded devices, autonomous systems, and mobile agents.
Documentation
pub mod bitmask;
pub mod blob;
pub mod config;
pub mod error;
pub mod fixtures;
mod gridstore;
mod pages;
mod tracker;

pub use blob::Blob;
use crate::common::universal_io::MmapFile;
pub use gridstore::{Gridstore, GridstoreReader, GridstoreView};

use crate::gridstore::error::GridstoreError;

pub(crate) type Result<T> = std::result::Result<T, GridstoreError>;

/// Concrete tracker type used by gridstore (universal io over mmap).
pub(crate) type TrackerMmap = tracker::Tracker<MmapFile>;