| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| zeusdb-vector-database-0.10.0.cdx.json | 2026-09-02 | 132.3 kB | |
| README.md | 2026-09-02 | 2.6 kB | |
| Version 0.10.0 source code.tar.gz | 2026-09-02 | 869.4 kB | |
| Version 0.10.0 source code.zip | 2026-09-02 | 948.1 kB | |
| Totals: 4 Items | 2.0 MB | 0 | |
Added
-
Sparse vector spaces. A collection can declare a sparse space beside its dense one, holding term ids and weights in an inverted index. Declared through
create(..., sparse={...}), filled through thesparsekey on a record or thesparsearray on a batch, and queried as an arm ofquery(). -
Text search. A sparse space declared with a tokenizer takes a
textfield instead, which the tokenizer splits and the space counts. The built-in tokenizer splits on anything that is not a letter or a digit and lowercases. A caller supplies their own as a callable taking astrand returning an iterable ofstr. -
Term frequency weighting. A sparse space scores by the dot product or by term frequency weighting with
k1andb. A term is weighted by its rarity over the records the query admits, or over every live record on request. A space declared with a tokenizer takes term frequency weighting by default. -
query()andexplain().query()runs one to eight arms over one set of candidates and fuses their pages by reciprocal rank. An arm is a dense vector, a sparse vector or a text, and every arm shares the filter. Each hit carries its rank and score on every arm's page it appeared on.explain()takes the same arguments and returns the plan alone, being the admit set's shape, each arm's fetch and estimated cost, and the fusion. -
Sparse spaces persist. A collection holding one saves it under
spaces/<name>/, with the postings and, for a text layer, the term dictionary.load(path, tokenizer=...)takes the tokenizer a text layer was declared with. -
get_stats()reports a sparse space, under nine keys, andtotal_memory_mbsums them in.
Changed
-
An unfiltered search is faster by 22 percent on SIFT-128 under
l2, 18 percent on GloVe-100 undercosineand 6.5 percent on DBpedia-1536 undercosine, measured at 50,000 records. Every result page is identical. -
A directory holding a sparse space declares format version 2.0.0 and needs this release or later. A directory holding a dense space alone stays at 1.1.0 and opens on every release that reads 1.x. Every directory 0.8.0 and 0.9.0 wrote opens unchanged.
Internal
-
The engine is a Cargo workspace of five crates, none published to crates.io. Every failure is one
Errortype mapped to the same exception classes and messages. -
save()flushes the graph file to disk before the directory is renamed into place. -
widemoves to 1.7 andchacha20to 0.10.2.