Hybrid Search
Hybrid search combines lexical retrieval (BM25 or sparse vectors like SPLADE) with dense vector retrieval and fuses the results, capturing both exact-match precision and semantic recall.
Full definition
Result fusion is typically Reciprocal Rank Fusion (RRF), weighted score combination, or a learned re-ranker. Hybrid search is the standard recommendation from Microsoft Azure AI Search, Elasticsearch, and Weaviate because pure dense retrieval misses rare terms (product SKUs, error codes, person names) while pure keyword search misses paraphrase. Public benchmarks (BEIR) show hybrid beats either alone by 5-15% NDCG@10 on most tasks.
Why it matters
Teams that ship vector-only RAG and complain about "the model can't find the right document" are usually one BM25 hybrid step away from a 10-point retrieval improvement. The fix is days of work, not weeks.
Example
An e-commerce search switches from pure dense to hybrid (BM25 + embeddings + RRF) and recovers exact SKU matches that the embedding model was paraphrasing into similar-but-wrong products — conversion lifts 6%.
Related terms
- Semantic SearchSemantic search is information retrieval that ranks documents by meaning rather than exact-keyword overlap, using vector embeddings of query and documents to measure similarity in a learned semantic space.
- Re-rankerA re-ranker is a second-stage retrieval model that re-scores a candidate set (typically top 50-100) from a fast first-stage retriever using a more expensive cross-encoder that jointly attends to query and document.
- Retrieval-Augmented Generation (RAG)Retrieval-Augmented Generation (RAG) is a technique where a language model retrieves relevant documents from an external knowledge base before generating a response, reducing hallucination by 30-60% and enabling citation of sources.
- Vector DatabaseA vector database is a database optimized for storing and searching high-dimensional vectors (embeddings) by similarity rather than by exact match — the storage layer of every RAG and semantic-search system.
Source & further reading
Primary source: Microsoft Azure AI Search — "Hybrid retrieval and ranking" (2024).
Citation policy: this entry is part of the AIDOLS AI Implementation Glossary and may be quoted for research, journalism, and education with attribution to aidolsgroup.com/da/glossary/hybrid-search/.