Vector DBs & Stores

March 6, 2026 · View on GitHub

🏥 Quick Return to Emergency Room

You are in a specialist desk.
For full triage and doctors on duty, return here:

Think of this page as a sub-room.
If you want full consultation and prescriptions, go back to the Emergency Room lobby.

This page is your hub to stabilize retrieval pipelines across popular vector stores.
If your results look similar but the answer is wrong, start here. Each store page gives guardrails, fix steps, and the same acceptance targets so you can verify without changing infra.


Quick routes to per-store pages

StoreBest forWhy chooseLink
FAISSlocal development, labsfast, widely used, you manage itfaiss.md
Chromaquick demos, notebookssimple API, easy to startchroma.md
Qdrantproduction and multitenantRust core, good scaling, persistenceqdrant.md
Weaviatehybrid search and schemasfirst class filters, hybrid pipelinesweaviate.md
Milvusenterprise ANN at scalemature ecosystem and performancemilvus.md
pgvectorteams already on Postgreskeep data in the same DB, simple opspgvector.md
Redis (Search/Vec)caches and small hybrid setskey value plus vectors, low latencyredis.md
Elasticsearch (ANN)text plus vector in one stackreuse analyzers and infra you already haveelasticsearch.md
Pineconezero ops SaaSmanaged reliability and steady APIpinecone.md
Typesensesimple full text plus vectorsfriendly setup, good defaultstypesense.md
Vespalarge scale search and recsysquery routing and ranking at scalevespa.md

When to use this folder

  • High similarity but wrong meaning.
  • Citations do not match the retrieved section.
  • Hybrid retrieval performs worse than a single retriever.
  • After deploy, query casing or analyzer or metric does not line up.
  • Index looks healthy but coverage stays low.

Acceptance targets for any store

  • ΔS(question, retrieved) ≤ 0.45
  • Coverage of target section ≥ 0.70
  • λ_observe convergent across three paraphrases
  • E_resonance flat on long windows

Map symptoms to structural fixes


60 second fix checklist

  1. Lock metrics and analyzers
    One embedding model per field. One distance function. Same analyzer for write and read.

  2. Contract the snippet
    Require {snippet_id, section_id, source_url, offsets, tokens} and enforce cite then explain.
    data-contracts.md

  3. Add deterministic reranking
    Keep candidate lists from BM25 and ANN. Detect query split.
    rerankers.md

  4. Cold start and deploy fences
    Block traffic until index hash, analyzer, and model versions match.
    bootstrap-ordering.md

  5. Observability
    Log ΔS and λ across retrieve, rerank, reason. Alert when ΔS ≥ 0.60.

  6. Regression gate
    Require coverage ≥ 0.70 and ΔS ≤ 0.45 before publish.


Copy paste audit prompt

I uploaded TXT OS and the WFGY Problem Map pages.
Store: <name>. Retrieval: <bm25|ann|hybrid> with <distance>.

Audit this query and return:

- ΔS(question,retrieved) and λ across retrieve → rerank → reason.
- If ΔS ≥ 0.60, choose one minimal structural fix and name the page:
  embedding-vs-semantic, retrieval-traceability, data-contracts, rerankers.
- JSON only:
  { "citations":[...], "ΔS":0.xx, "λ":"→|←|<>|×", "next_fix":"..." }

Quick Start Downloads

ToolLink3 step setup
WFGY 1.0 PDFEngine Paper1) Download 2) Upload to your LLM 3) Ask “Answer using WFGY +
TXT OS (plain text OS)TXTOS.txt1) Download 2) Paste into any LLM chat 3) Type “hello world” to boot

Explore More

LayerPageWhat it’s for
⭐ ProofWFGY Recognition MapExternal citations, integrations, and ecosystem proof
⚙️ EngineWFGY 1.0Original PDF tension engine and early logic sketch (legacy reference)
⚙️ EngineWFGY 2.0Production tension kernel for RAG and agent systems
⚙️ EngineWFGY 3.0TXT based Singularity tension engine (131 S class set)
🗺️ MapProblem Map 1.0Flagship 16 problem RAG failure taxonomy and fix map
🗺️ MapProblem Map 2.0Global Debug Card for RAG and agent pipeline diagnosis
🗺️ MapProblem Map 3.0Global AI troubleshooting atlas and failure pattern map
🧰 AppTXT OS.txt semantic OS with fast bootstrap
🧰 AppBlah Blah BlahAbstract and paradox Q&A built on TXT OS
🧰 AppBlur Blur BlurText to image generation with semantic control
🏡 OnboardingStarter VillageGuided entry point for new users

If this repository helped, starring it improves discovery so more builders can find the docs and tools.
GitHub Repo stars