A fast, lightweight, zero-setup in-memory vector store powered by NumPy.
- Tiny local vector search for projects that do not need a vector database
- Fast exact vector search using vectorized NumPy operations
- Simple typed API returning
VectorHit(index, value, metadata) - Composable filtering by passing prefiltered row indexes with
within_rows - Single-file persistence as versioned, self-describing trusted local
.npzarchives - No framework opinions: bring your own embeddings, chunking, async, and metadata model
This library is purpose-built for small to medium-scale vector search tasks and offers a simple alternative to heavyweight vector databases when you do not need network services, indexing infrastructure, ingestion pipelines, or domain-specific metadata filtering.
VectorStore performs exact search over every selected row. The following
measurements are reference points, not latency guarantees:
Each cell shows the median time per cosine query followed by the stored vector matrix size:
| Rows | 384 dimensions | 1,536 dimensions | 3,072 dimensions |
|---|---|---|---|
| 1,000 | 0.032 ms · 1.5 MB | 0.049 ms · 6.1 MB | 0.088 ms · 12.3 MB |
| 10,000 | 0.286 ms · 15.4 MB | 1.065 ms · 61.4 MB | 2.122 ms · 122.9 MB |
| 100,000 | 2.983 ms · 153.6 MB | 9.877 ms · 614.4 MB | 20.509 ms · 1.23 GB |
These benchmarks intentionally stop at 100,000 rows. NumPy Vector Store is designed for small-to-medium, in-process exact search; 100,000 rows is an upper reference, not a promised limit or a target for continued scaling. The practical boundary depends on vector dimensions, metadata, available memory, and latency requirements. Workloads that routinely reach millions of vectors generally need an indexed or service-backed system.
These are unfiltered top_k=10 searches on a normalized store. Each row divides
the median duration of seven measured 20-query trials by 20, after two discarded
warmup trials. The vector matrix size excludes metadata, temporary search
arrays, and Python process overhead.
The measurements were taken from commit 4b23810 on a 24 GB Apple M4 Mac mini
with macOS 26.6.1, CPython 3.13.5, NumPy 2.3.3, and Accelerate BLAS. Hardware,
operating system activity, Python and NumPy versions, BLAS implementation, and
thread settings can all change the result.
The repository includes benchmark commands that emit the inputs, environment, raw samples, and median as JSON:
uv run python benchmarks/benchmark.py search \
--rows 10000 --dimensions 384 --queries 20 --top-k 10 \
--warmup 2 --repetitions 7 > /tmp/nvs-search.json
uv run python benchmarks/benchmark.py ingest \
--rows 10000 --dimensions 384 --batch-size 1 \
--warmup 2 --repetitions 7 > /tmp/nvs-ingest.jsonFor the same 10,000-by-384 prepared input, repeated single-row ingestion had a
median of 78.6 ms, or about 127,000 rows per second. Supplying 1,000 rows per
add() call had a median of 6.63 ms, or about 1.51 million rows per second.
Both measurements include construction of a fresh normalized store and every
add() call, but exclude input generation.
See the benchmark guide for the timed regions, complete options, output fields, and interpretation notes. The project keeps structural complexity checks in CI, but does not fail shared runners on wall-clock timing.
uv add numpy-vector-storeWith pip:
python -m pip install numpy-vector-storeimport numpy as np
from numpy_vector_store import VectorStore
store = VectorStore[dict[str, str]](dimensions=3)
store.add(
vectors=np.array([
[1.0, 0.0, 0.0],
[0.0, 1.0, 0.0],
[0.0, 0.0, 1.0],
]),
metadata=[
{"title": "x-axis"},
{"title": "y-axis"},
{"title": "z-axis"},
],
)
hits = store.cosine_search(
query=np.array([0.9, 0.1, 0.0]),
top_k=2,
)
for hit in hits:
print(f"{hit.metadata['title']}: {hit.value:.3f}")metadata is an outer sequence with one opaque payload for each vector row.
Each payload can be a dict, dataclass, tuple, list, string, integer row ID, or
another Python object that fits your application. Tuple and list payloads remain
single row values rather than being interpreted as additional array dimensions.
The supported top-level package names are VectorStore, VectorHit, and
__version__. See the public API and compatibility policy
for the complete interface that the project intends to stabilize at 1.0.
dimensions, top_k, and the index passed to get() use integer semantics.
Python integers and NumPy integer scalars are accepted and converted to Python
int; booleans are rejected rather than being treated as zero or one.
dimensions and top_k must be greater than zero. A valid integer outside the
stored row range still makes get() return None.
normalize accepts Python and NumPy booleans and is stored as a Python bool.
Search thresholds such as min_value and max_value accept finite Python
integer or floating-point values and NumPy integer or floating scalars.
Booleans, strings, complex numbers, and arrays are not threshold scalars and are
rejected.
within_rows must be a one-dimensional sequence of unique integer row indexes.
Python and NumPy integers are accepted; booleans and non-integer values are not.
When supplied as a Python sequence, this includes a boolean mixed into otherwise
integer values; NumPy's implicit conversion of that boolean to zero or one is
not used as a row index.
Malformed shapes and duplicate indexes raise ValueError, while an index
outside the current store raises IndexError. These checks still run when the
store is empty.
For these scalar inputs, an inappropriate type raises TypeError and a
supported type with an invalid value raises ValueError. Row selectors outside
the store raise IndexError, and filesystem operations continue to raise the
relevant OSError subclass. Error messages explain the failed argument, but
their exact wording is not a compatibility guarantee.
The store owns its configuration and row structure. dimensions, normalize,
and file_path are readable properties, but callers cannot assign them
directly. Use the constructor for configuration, open(path) to open an
archive, and save(path) to establish or change a binding.
store.vectors and store.metadata are zero-copy, non-writeable NumPy views
for inspection and metadata prefiltering. Direct item assignment and ordinary
attempts to enable writes are rejected. Request a fresh view after add(),
clear(), or reload() when current rows are required.
These views prevent accidental mutation through the supported API; they are not
tamper-proof snapshots. NumPy exposes shared buffers, and Python private state
can be reached deliberately. Mutating backing storage through .base, private
attributes, ctypes, or similar escape hatches is unsupported and can corrupt
store invariants. Use .copy() when code needs an independently mutable
full-array snapshot:
vectors = store.vectors.copy()
metadata_rows = store.metadata.copy()Copying metadata isolates the outer row array but still shares the opaque
payload objects stored inside it.
get(index) has a narrower ownership boundary:
row = store.get(0)
if row is not None:
vector, payload = row
vector[0] = 10.0 # Independent copy; the store is unchanged.
payload["reviewed"] = True # Shared application metadata object.The returned vector is an independent float32 copy. The metadata payload is
the same opaque object supplied to add() or restored from the archive; the
store protects the metadata row structure but does not deep-copy arbitrary
dicts, lists, dataclasses, or application objects. Applications that require
immutable payloads can use frozen objects or copy them at their own boundary.
add() accepts one row or a batch, and preserves insertion order in either
case. The store keeps private spare capacity so repeated small additions do not
copy every existing row on every call. When that capacity is full, the vector
and metadata arrays grow together and the active rows are copied once.
Spare capacity is internal. len(store), inspection views, search, get(), and
saved archives contain only rows that were added. clear() releases both the
active rows and any reserved capacity held by the store. As with any NumPy
view, an older inspection view keeps its previous buffer alive until that view
is released. Adding a batch is still preferable when the application already
has one because it also reduces per-call validation and Python overhead.
VectorStore defaults to normalize=True, which scales each stored vector to
length 1. Normalization preserves vector direction while discarding magnitude:
[3.0, 4.0] -> [0.6, 0.8]This is the default because it makes cosine similarity fast and direction-only,
which is the common case for semantic embeddings. Use normalize=False when
vector length matters, such as when magnitude encodes strength, confidence,
counts, scale, or raw geometry.
Zero vectors are rejected when normalize=True because they cannot be scaled to
unit length. Raw stores accept zero vectors for dot-product and Euclidean
search. Because cosine similarity is undefined for zero vectors,
cosine_search raises an error when its selected rows include one; use
within_rows to exclude zero rows when needed.
Cosine search also requires a non-zero query. Dot-product and Euclidean searches
require one when normalize=True, because they normalize the query before
comparison. With normalize=False, both methods accept a zero query. These
rules apply even when the store or within_rows selection is empty.
Stored vectors use float32 to keep the store compact. Vectors and queries must
be real-valued array-like inputs that remain finite when converted to float32.
Complex-valued inputs raise TypeError rather than silently losing their
imaginary components. Search thresholds must also be finite. Invalid values are
rejected before they can affect stored state or ranking.
Norms and raw metric values use float64 accumulation where float32
intermediate calculations could overflow or underflow. This allows finite
float32 vectors across the representable magnitude range to be normalized and
compared reliably.
| Method | normalize=True default |
normalize=False |
|---|---|---|
cosine_search |
True cosine similarity over stored unit vectors; fastest/default path for embeddings | True cosine similarity over raw vectors; computes vector norms during search |
dot_search |
Dot product of unit vectors, effectively equivalent to cosine similarity | True dot product over original vectors; use when magnitude should affect ranking |
euclidean_search |
Distance between normalized directions; useful only when direction-normalized distance is intended | True Euclidean distance over original vectors; use for geometric/feature-space nearest neighbors |
get |
Returns normalized vectors | Returns original vectors |
save |
Saves normalized vectors | Saves raw vectors |
open and reload |
Restore normalized storage semantics | Restore raw vectors exactly as stored |
Use cosine_search for semantic embeddings and direction-only similarity:
hits = store.cosine_search(query, top_k=10, min_value=0.75)Use dot_search with normalize=False when larger-magnitude vectors should
rank higher:
store = VectorStore[dict[str, str]](dimensions=3, normalize=False)
store.add(vectors, metadata)
hits = store.dot_search(query, top_k=10, min_value=0.0)Use euclidean_search with normalize=False for raw coordinate or feature-space
nearest-neighbor search:
store = VectorStore[dict[str, str]](dimensions=3, normalize=False)
store.add(vectors, metadata)
hits = store.euclidean_search(query, top_k=10, max_value=1.5)Cosine and dot-product results are ordered from larger values to smaller values. Euclidean results are ordered from smaller distances to larger ones. When two computed values are exactly equal, the row with the lower original store index comes first.
The same rule determines which tied rows cross the top_k boundary. It also
applies to within_rows: the original store index breaks a tie, regardless of
the order in which filtered row indexes were supplied. Values that are close
but not exactly equal remain ordered by their computed metric value.
The store does not implement a metadata query language. To filter by metadata,
produce row indexes first, then pass them with within_rows.
rows = [
i
for i, metadata in enumerate(store.metadata)
if metadata["title"].startswith("x")
]
hits = store.cosine_search(query, top_k=10, within_rows=rows)Each stored row may appear at most once in within_rows; duplicate indexes are
rejected rather than producing duplicate hits. An empty sequence returns no
hits, but it does not bypass validation of the query or other search arguments.
Searches without within_rows compute directly against the stored vector matrix
and do not make a full copy of it. A filtered search gathers the selected rows
into a temporary matrix, so its additional memory use scales with the number of
selected rows and the vector dimensions. Omit within_rows when every row
should be searched; passing every row explicitly would create an unnecessary
full-size temporary matrix.
For structured NumPy metadata, use NumPy to produce the row indexes:
metadata_table = np.array(
[
("intro", "A", 2024),
("setup", "A", 2023),
("guide", "B", 2024),
],
dtype=[("title", "U20"), ("product", "U10"), ("year", "i4")],
)
store = VectorStore[int](dimensions=3)
store.add(vectors, metadata=np.arange(len(metadata_table)))
mask = (metadata_table["product"] == "A") & (metadata_table["year"] >= 2024)
rows = np.flatnonzero(mask)
hits = store.cosine_search(query, within_rows=rows)
for hit in hits:
row = metadata_table[hit.metadata]
print(row["title"], hit.value)VectorStore does not use internal locks. Multiple threads may call search,
get(), or the inspection properties on the same instance while its rows,
configuration, binding, and metadata payloads remain unchanged.
If any thread may call add(), clear(), reload(), or save(), every access
to that store must use the same application-level lock or another external
synchronization mechanism. The same rule applies when application code mutates
a metadata payload shared with the store. In particular, do not overlap a save
with an in-memory mutation: an atomic file replacement cannot turn two separate
array reads into a consistent store snapshot.
Separate store instances writing the same path also need external writer coordination. Atomic replacement prevents readers from seeing a partially written archive, but concurrent writers can replace one another and the last successful replacement wins.
Create a new store normally, then supply its destination on the first save:
store = VectorStore[dict[str, str]](dimensions=1536)
store.add(embeddings, metadata)
store.save("vectors.npz")save(path) writes the archive and binds that path to the store. Later
save() calls update the bound archive. Passing another path performs a Save
As operation; the new path becomes the binding only after the write succeeds.
Open an existing store directly from its self-describing archive:
store = VectorStore[dict[str, str]].open("vectors.npz")open() restores dimensions and normalize from the archive and binds its
path. Use reload() when the file may have changed externally and you
explicitly want to discard current in-memory changes:
store.reload()reload() always rereads the bound archive and raises if the store is unbound,
the file is missing, or the archive is invalid. A failed reload leaves the
current in-memory vectors and metadata unchanged.
When save(path) or open(path) receives a relative path, the store anchors it
to the current working directory as part of the binding. file_path therefore
returns an absolute path, and a later working-directory change cannot redirect
save() or reload() to another file. Anchoring does not canonicalize the path:
.. components and symlinks retain their normal filesystem meaning.
The .npz suffix may be omitted. An extensionless path such as "vectors" is
resolved to "vectors.npz" for saving, opening, and reloading.
Persistence paths accept strings and string-valued os.PathLike objects such
as pathlib.Path. Passing an empty path raises ValueError; passing None,
bytes, or another non-path value to open() raises TypeError. For save(),
None retains its established meaning: reuse the current binding, or raise
ValueError if the store has not been bound yet.
Raw-vector configuration is also restored from the archive:
store = VectorStore[dict[str, str]](
dimensions=1536,
normalize=False,
)
store.add(raw_vectors, metadata)
store.save("raw-vectors.npz")
loaded = VectorStore[dict[str, str]].open("raw-vectors.npz")
assert loaded.normalize is FalseArchives written by 0.4 use format version 1 and contain format_version,
dimensions, normalize, vectors, and metadata. The compatibility suite
opens an archive generated by the published 0.4.0 package on the oldest
supported Python and NumPy versions. The stored configuration prevents an
archive from being loaded with different dimensions or normalization semantics.
This is a forward-reading promise for self-describing format-version-1 archives: current releases can open the recorded 0.4 fixture. It does not restore the unversioned two-array reader or guarantee that an older package can open files written by an arbitrary future archive format.
Opening and reloading validate the complete schema, array dtypes and shapes, row counts, finite vector values, and zero-norm behavior before changing in-memory state. Opaque metadata values remain individual row payloads across persistence round trips.
Persistence failures keep their owning exception type. Filesystem failures use
the relevant OSError subclass, malformed schemas use ValueError, and NumPy,
pickle, or application metadata-loading exceptions are not wrapped in a package
exception. Exact message text remains explanatory rather than a compatibility
guarantee.
Each save writes a uniquely named temporary archive in the destination
directory, closes it, and then replaces the destination with os.replace.
Readers opening the destination path therefore see either the previous complete
archive or the new complete archive rather than a partially written file. If
writing or replacement fails, the previous destination remains in place and the
temporary file is removed.
Atomic replacement is not file locking or multi-writer coordination. Concurrent writers can still replace one another, and the library does not promise that a successful save has reached durable hardware storage across every operating system or power failure.
Version 0.7 reads only self-describing format version 1 archives. Unversioned
archives containing only vectors and metadata cannot be opened because they
do not record dimensions or normalization semantics. Recreate those archives
from source data, or convert them with NumPy Vector Store 0.4 before upgrading.
Constructor file_path=, instance load(), and context-manager persistence
were removed in 0.5. See the persistence migration guide for the
direct replacements and the pre-upgrade procedure for an unversioned archive.
Metadata persistence uses allow_pickle=True for flexible Python payloads, so
only load files generated by your own application or another trusted local
process. Loading untrusted .npz files is not a supported security model.
This project is still pre-1.0, so occasional breaking changes are expected while the API stabilizes. Changes are documented in the changelog and GitHub release notes. Deprecated APIs will keep warning for at least one point release before removal.
Version 0.7 publishes the proposed 1.x contract for an adoption cycle before 1.0. The public API and compatibility policy identifies the supported top-level surface, deprecation rules, archive guarantees, runtime support policy, and details that remain implementation-specific.
Version 0.7 supports Python 3.11 through 3.14 and NumPy 1.23.2 or newer. These versions are listed in the package metadata and exercised in CI, including a dedicated check against the minimum NumPy version. Python 3.10 remains supported by the 0.3 release series but is not supported by 0.4 or later.
The project generally retains stable CPython versions until their upstream end-of-life, adds new versions after its dependencies and CI support them, and drops versions only in minor releases.
See the changelog for release history and the project roadmap for the planned path to stable API and persistence contracts. Persistence users upgrading from the 0.3 API should also read the migration guide.
git clone https://github.com/tvanreenen/numpy-vector-store.git
cd numpy-vector-store
uv sync --frozen --group devBefore submitting a pull request:
- Run
uv lock --check - Run
uv run --locked ruff check . - Run
uv run --locked ruff format --check . - Run
uv run --locked mypy src/ benchmarks/ tools/ - Run
uv run --locked pytest
MIT License - see LICENSE file for details.