A private Wikipedia demonstrating TriDB's tri-modal model — vector similarity, graph traversal, and relational filters in one query. This full-corpus demo is served by an offline reader (SQLite metadata, NumPy CSR link graph, cuVS CAGRA vectors); the Postgres-native TriDB engine — one process, one write-ahead log — is measured at 200K articles graph-inclusive and 1M vector-only. Search by meaning, walk the link graph, find the path between any two topics, ask questions.
A database that unifies similarity, traversal, and filter needs data that is all three at once. Wikipedia is exactly that — and at a scale that makes the fusion matter.
Every article is text — an embedding. "Find articles like this one," not just string matches.
~6.9M articles woven by hundreds of millions of hyperlinks — a link graph to traverse and path-find (a NumPy CSR adjacency in this reader).
Infobox facts, categories, lengths, in-degree — relational predicates to filter and rank by.
This isn't a faster way to load a page — Wikimedia's global CDN is excellent at that. It's a knowledge engine: things the official reader can't do in one step, done in one fused query.
| Capability | Official Wikipedia | TriDB Wiki (offline reader) |
|---|---|---|
| Article page delivery | Global CDN — needs a network round-trip | Local / offline — zero network RTT on the host |
| Search | Keyword full-text (Elasticsearch) | Full-text + semantic vector similarity |
| Related articles | "What links here" — raw link list | Fused vector + graph, relevance-ranked, early-terminating |
| Path between two topics | Not built in | Shortest-path ("Connect") — BFS over the reader's NumPy CSR adjacency |
| Ask a question (RAG) | Not available | Graph-aware RAG over the articles |
| Structured filters | Not in the reader | Relational predicates — in-degree, length, category |
| Cross-modal update consistency | n/a (single modality) | One WAL, atomic — 0 torn vs 42 across a 3-store stack (native engine measurement) |
| Private & offline | Public, online only | Self-hosted, private, fully offline |
| Scale demonstrated | ~6.9M (English) | Reader: 6.9M today → Wikidata 110M next · native engine: 200K graph-inclusive, 1M vector |