Term
Semantic Search
Semantic search retrieves content by meaning rather than exact word match — query and documents are compared as embeddings, so synonyms and paraphrases also hit.
Semantic Search — explained
Classic full-text search matches tokens: searching for “car” finds documents containing “car” — not “automobile” or “vehicle”. Semantic search instead embeds query and documents into the same vector space and compares their distance. Terms that appear in similar contexts during training end up close together — including synonyms, translations, and paraphrases. That makes search robust against wording differences, but costs precision on very specific terms like SKUs or proper nouns.
Example / Practical context
In a knowledge base, an employee asks “How do I cancel an order?” — and gets back documents titled “Reversing a purchase”, “Order cancellation policy”, and “Refund workflow”, even though the exact word “cancel” never appears. In the RAG stack, semantic search is the default retrieval step; in production it is usually combined with full-text into hybrid search.
Distinction from related terms
Semantic search is the method, the vector database is the storage system behind it, RAG is the application that combines semantic search with an LLM. “Neural search” is often used as a synonym. Pure BM25 search is the lexical counterpart: fast, precise on keywords, but without understanding of meaning.
Entdecke mehr
AI Workflows by Keyword: How We Make Recurring Routines Enforceable
A typed keyword triggers a fixed AI routine — and every single step must be committed before the next one appears. Why that's the actual trick.
GlossarS-RAG
S-RAG (Search-optimized RAG) is boostN.ai's take on Retrieval-Augmented Generation. It extends classic RAG with search-engine principles: relevance ranking, recency decay and typed links between chunks for deterministic follow-up retrieval.
LexikonRAG Tuning and Balancing — Embeddings, Weights, Decay and MCP for Advanced Setups
How to steer retrieval on purpose: embedding choice, hybrid weights, reranker cascades, time decay, authority boost, MMR and MCP as a retrieval tool.