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
mod payload_storage_read;

use crate::common::universal_io::UniversalRead;
use crate::gridstore::GridstoreReader;

use crate::segment::types::Payload;

pub struct ReadOnlyPayloadStorage<S: UniversalRead> {
    storage: GridstoreReader<Payload, S>,
    populate: bool,
}