Skip to main content

Module vector_embedded

Module vector_embedded 

Source
Expand description

EmbeddedVectorStore โ€” in-process brute-force cosine-similarity store.

Suitable for development, testing, and production use-cases with fewer than ~100 K vectors. All data lives in a HashMap protected by a std::sync::RwLock. The lock is held for the minimal duration needed (no I/O inside the critical section), so tokio tasks can call these methods without blocking the async runtime for meaningful time.

Structsยง

EmbeddedVectorStore
In-memory brute-force vector store.