Back to All Posts
Jun 9, 2026 3:24:45 PM

What is a vector database and which one should I use?

By dotsquares 1 minute read

A vector database stores and indexes embeddings for fast approximate-nearest-neighbour (ANN) search. Popular options: Pinecone (managed, easy), Weaviate (open-source, feature-rich), Qdrant (Rust-based, fast), pgvector (PostgreSQL extension — best if you’re already on Postgres). For prototyping, even FAISS in memory works.

Add Comment