Hybrid search is a retrieval method that combines keyword search with vector similarity search so you can find documents that match both the exact words a user typed and the broader meaning of the query.
Pure keyword search is good when the exact term matters. Pure vector search is good when wording varies but meaning is similar. In practice, many real queries need both.
You reach for hybrid search when:
A common pattern is search over docs, help centers, knowledge bases, and enterprise content.
Hybrid search usually runs two retrieval methods in parallel:
The system then combines the results. The combination can happen in a few ways:
There is no single universal formula for hybrid search. The important idea is that it blends lexical matching and semantic matching. That makes it more robust than either method alone on messy, natural-language search.
A user searches for:
“how do I reset MFA after phone loss”
A hybrid retriever can return both kinds of documents and rank the most useful ones near the top.