Skip to main content

Module staging

Module staging 

Source
Expand description

Staging buffer for batched HNSW insertions.

Accumulates vectors before bulk-inserting into the live HNSW index. Search merges results from both the live index (O(log n) HNSW) and the pending buffer (O(n) brute-force scan, fits L2 cache for n ≤ 10K).

Structs§

StagingBuffer
Staging buffer with pending vectors awaiting HNSW insertion.