nowfound

Alternatives

Products that do what SimpleVecDB does

Dead-simple local vector database powered by sqlite-vec.

  1. 1HO

    Hey HN, we want to share HelixDB (https://github.com/HelixDB/helix-db/), a project a college friend and I are working on. It’s a new database that natively intertwines graph and vector types, without sacrificing performance. It’s written in Rust and our initial focus is on supporting RAG. Here’s a video runthrough: https://screen.studio/share/szgQu3yq. Why a hybrid? Vector databases are useful for similarity queries, while graph databases are useful for relationship queries. Each stores data in a way that’s best for its main type of query (e.g.…

    2025 · github.com

  2. 2

    We have been using graph DBs more and more at work. I found them painful to work with locally and decided to try and build something better.

    13d ago · github.com

  3. 3GI
  4. 4
    SemaDB109

    No fuss vector database for AI

    2023

  5. 5ZT

    Zvec is a lightweight, SQLite-like embedded vector database purpose-built for edge and on-device workloads. It delivers four core advantages: out-of-the-box usability, configurable resource budgets, extreme performance, and versatile vector capabilities. Open-sourced under the Apache 2.0 license, Zvec aims to provide developers with a one-stop path from prototyping to production deployment on the edge. Try Zvec—we’re excited to see your adoption, feedback, and contributions. For a more detailed introduction, you can refer to https://zvec.org/en/blog/introduction/

    Jan 2026 · github.com

  6. 6IW

    I wrote a relational database management system (RDBMS) (sqlite clone) from scratch in pure Python.

    2023 · github.com

  7. 7
    Supavec672

    The open source RAG as a service platform

    2025 · supavec.com

  8. 8WW
  9. 9

    Zero-ops vector database for GenAI developers

    2024

  10. 10VA

    Hi HN, I built VectorDBZ, a cross-platform desktop app for exploring and analyzing vector databases like Qdrant, Weaviate, Milvus, and ChromaDB. It lets you browse collections, inspect vectors and metadata, run similarity searches, and visualize embeddings without writing custom scripts. GitHub (downloads and issues): https://github.com/vectordbz/vectordbz Feedback welcome. If it’s useful, starring the repo helps keep me motivated. Thanks.

    Jan 2026 · github.com

  11. 11VA

    I built [VectorLiteDB (https://github.com/vectorlitedb/vectorlitedb) — a simple, embedded vector database that stores everything in a single file, just like SQLite. The problem: If you’re a developer building AI apps, you usually have two choices for vector search - Set up a server (e.g. Chroma, Weaviate) - Use a cloud service (e.g. Pinecone) That works for production, but it’s overkill when you just want to: - Quickly prototype with embeddings - Run offline without cloud dependencies - Keep your data portable in a single file The inspiration was *SQLite* during…

    Sep 2025 · github.com

  12. 122F
  13. 13AB

    We recently benchmarked AnuDB, a lightweight embedded database built on top of RocksDB, against SQLite on a Raspberry Pi. The performance difference, especially for parallel operations, was dramatic. GitHub Links: AnuDBBenchmark: https://github.com/hash-anu/AnuDBBenchmark AnuDB (Core): https://github.com/hash-anu/AnuDB Why Compare AnuDB and SQLite? SQLite is excellent for many embedded use cases — it’s simple, battle-tested, and extremely reliable. But it doesn't scale well when parallelism or concurrent writes are required. AnuDB, built over RocksDB,…

    2025 · github.com

  14. 14DS

    Hello HN! I'm building mvsqlite, a distributed variant of SQLite with MVCC transactions, that runs on FoundationDB. It is a drop-in replacement that just needs an `LD_PRELOAD` for existing applications using SQLite. I made this because Blueboat (https://github.com/losfair/blueboat) needs a native SQL interface to persistent data. Apparently, just providing a transactional key-value store isn’t enough - it is more easy and efficient to build complex business logic on an SQL database, and it seems necessary to bring a self-hostable distributed SQL DB onto the platform.…

    2022 · github.com

  15. 15
    QoreDB95

    The fast, open-source database client built with Rust

    Mar 2026 · qoredb.com

  16. 16TA
  17. 17CH

    Hi HN! We're thrilled to share CozoDB v0.6, a monumental update to our FOSS database, which already unifies relational and graph features. With the addition of vector search, CozoDB becomes an even better companion for LLMs like ChatGPT. This release introduces vector search using HNSW indices within Datalog, enabling seamless integration with powerful features such as ad-hoc joins, recursive Datalog, and classical whole-graph algorithms. This update significantly broadens CozoDB's capabilities. Check out the linked release note for an in-depth look at the new features, comparisons to other…

    2023 · docs.cozodb.org

  18. 18

    Firebase vector search made easy

    2023

  19. 19EO

    Hey HN! We are building Epsilla (https://github.com/epsilla-cloud/vectordb), an open-source, self-hostable vector database for semantic similarity search that specializes in low query latency. When do we need a vector database? For example, GPT-3.5 has a 16k context window limit. If we want to let it answer a question about a 300 page book, we cannot put the whole book content into the context. We have to choose the sections of the book that are most relevant to the question. Vector database is specialized at ranking and picking the most relevant content from a large pool…

    2023 · github.com

  20. 20ES

    Hi HN, I built EdgeVec, a vector database that runs entirely in the browser. It implements HNSW (Hierarchical Navigable Small World) graphs for approximate nearest neighbor search. Performance: - Sub-millisecond search at 100k vectors (768 dimensions, k=10) - 148 KB gzipped bundle - 3.6x memory reduction with scalar quantization Use cases: browser extensions with semantic search, local-first apps, privacy-preserving RAG. Technical: Written in Rust, compiled to WASM. Uses AVX2 SIMD on native, simd128 on WASM. IndexedDB for browser persistence. npm:…

    Dec 2025 · github.com

  21. 21

    Pip-install vector search for your GenAI applications

    2024

  22. 22
    NodeDB36

    Vector, Graph, Array, Columnar, KV - all in one database

    May 2026 · nodedb.bizapps24.com

  23. 23VA

    Hey HN, My friend Sam and I were bored one weekend, and wanted to make something self-contained but still useful. We ended up with Victor [0], a vector database designed to run in the browser. It’s written in Rust, which gives us access to things like super-fast and compact serialization and deserialization, but it’s compiled to WASM and uses web-sys to interact with the browser’s JS APIs to write the database contents to disk. We worked hard on designing it in a way that makes sense for the browser. It uses the private origin file system [1] and stores the vectors in a compact format (one…

    2023 · github.com

  24. 24HN

    Hey HN! We're college friends building HelixDB. It's a database that natively supports both graph and vector types. It’s designed for AI-driven apps like RAG, vector search, code indexing, and agent frameworks where you need both explicit relationships and similarity. We came up with the idea for Helix at university, while building a graph database as a side project in Rust. Reading some research papers on RAG setups, I realised there was a lot of infrastructure setup to get started. You need your own server, a graph database, a vector database and then some bespoke middleman software to…

    2025 · github.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →