LinkedIn analytics tracking pixel for AIDOLS AI consulting website performance measurement
Deployment & Operations

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%.

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/sv/glossary/hybrid-search/.