> Explore Qdrant's agent skills catalog at https://skills.qdrant.tech/
> Search the documentation at https://skills.qdrant.tech/search?query=your+query+here
> Use this file to discover all available pages: https://qdrant.tech/llms.txt

<div class="date">
  <img class="date-icon" src="/icons/outline/date-blue.svg" alt="Calendar" />  Module 1 
</div>


# When a System Needs Both

Those failures show why no single retrieval method works for every query. A search system may need semantic search to find related meaning, filters to match exact values such as a SKU, and keyword search when matching terms should affect the ranking.

**Hybrid search** specifically combines semantic retrieval with keyword retrieval. It uses **dense vectors** to compare meaning and **sparse vectors** to match and rank terms, often with an algorithm such as BM25.

Not every search system needs hybrid search. But when users may search by either meaning or specific terms, combining both methods can return more relevant results.

Module 3 covers hybrid search in detail.
