← all topics

🧮 Embeddings & Vector DBs

Embedding models, chunking, hybrid retrieval, vector store choice (Pinecone, Qdrant, Weaviate, pgvector), reranking.

7 videos · embeddingsvector-searchrecsysmultimodalvector-dbpostgres

The workflow

flowchart LR
    A[Documents] --> B[Chunking<br/>strategy & overlap]
    B --> C[Embedding model<br/>OpenAI / BGE / Cohere]
    C --> D[Vector store<br/>Pinecone / Qdrant / pgvector]
    D --> E[Hybrid search<br/>dense + sparse]
    E --> F[Filter + rerank]
    F --> G[Top-k results]

Embedding choice is rarely the bottleneck; chunking and reranking are.

Key takeaways

Recsys is moving from hash-based IDs to learned multimodal semantic IDs that share representational space with LLMs.
You probably don't need a dedicated vector DB — PG Vector inside the Postgres you already run gets you 90% of the way with RLS and joins.
Treating embedding space as a steerable canvas with discoverable semantic directions unlocks UI patterns prompts alone can't deliver.
Co-locate embeddings and business data in MongoDB documents so RAG can blend transactional context with vector search via one query language.
Production AI search now means domain-specific embeddings, structured-filter hybrid retrieval, and agentic query decomposition — not one-shot vector search.
Treat vendor vector-search benchmarks as marketing — only trust automated, reproducible, recall-anchored benchmarks across realistic read-write workloads.

Videos (7)

Recsys Keynote: Improving Recommendation Systems & Search in the Age of LLMs - Eugene Yan, Amazon

Recsys is moving from hash-based IDs to learned multimodal semantic IDs that share representational space with LLMs.

18.0K views · Jul 16, 2025

Supabase Vector: The Postgres Vector database: Paul Copplestone

You probably don't need a dedicated vector DB — PG Vector inside the Postgres you already run gets you 90% of the way with RLS and joins.

13.5K views · Nov 03, 2023

The Hidden Life of Embeddings: Linus Lee

Treating embedding space as a steerable canvas with discoverable semantic directions unlocks UI patterns prompts alone can't deliver.

9.3K views · Nov 07, 2023

Benchmarking semantic code retrieval on Claude Code — Kuba Rogut, Turbopuffer

Benchmark semantic code search on retrieval quality and workflow costs, since more focused context can improve precision while reducing broad exploration.

7.4K views · Jun 03, 2026

RAG and the MongoDB Document Model: Ben Flast

Co-locate embeddings and business data in MongoDB documents so RAG can blend transactional context with vector search via one query language.

1.6K views · Feb 08, 2025

The State of AI Powered Search and Retrieval — Frank Liu, MongoDB (prev Voyage AI)

Production AI search now means domain-specific embeddings, structured-filter hybrid retrieval, and agentic query decomposition — not one-shot vector search.

1.3K views · Jun 27, 2025

Vector Search Benchmark[eting] - Philipp Krenn, Elastic

Treat vendor vector-search benchmarks as marketing — only trust automated, reproducible, recall-anchored benchmarks across realistic read-write workloads.

863 views · Jun 27, 2025