Zenaique
Glossary · RAG

Hybrid Search

Also known as: Hybrid retrieval, Sparse-dense retrieval

Combine BM25 (keywords) + dense embeddings (meaning); better recall than either alone.

A retrieval strategy combining lexical (BM25) and semantic (embedding) scores via reciprocal rank fusion or weighted sum. Captures both exact-keyword hits and conceptual matches that either method alone would miss.

In practice

The default production RAG setup post-2024. Interviews probe RRF, alpha tuning, and when pure dense suffices.

How it compares

Hybrid search is BM25 + dense embeddings combined; BM25 alone is the lexical half.

Related topics

Related terms