What is vector search?
Vector search finds relevant text by comparing meaning rather than matching words, ranking passages by how close their embeddings are to the question's.
Vector search works by converting a question and a collection of documents into embeddings, then finding which documents' numbers sit closest to the question's numbers. The result is a search that can surface a relevant passage even when it doesn't contain the words the question used, something ordinary keyword search struggles with.
This is a core piece of how many AI answer tools decide what to read before responding: it's part of what makes retrieval-augmented-generation and grounding work in practice. For a site owner, it explains why a page can get pulled into an AI answer for a question phrased completely differently from the page's own wording, and why loading a page with one exact keyword phrase isn't the lever it would be for classic search, since the comparison here runs on meaning. Most real systems still combine this with ordinary keyword indexation rather than relying on meaning-matching alone.
Related
- EmbeddingAn embedding is a list of numbers that stands in for a piece of text's meaning, positioned so that texts which mean similar things end up with similar numbers even if they don't share any words.
- Retrieval-augmented generation (RAG)Retrieval-augmented generation is the technique of retrieving relevant documents and giving them to a model as context before it answers.
- GroundingGrounding is when a model answers using documents retrieved at the time of the question, rather than only from what it absorbed during training.
- IndexationIndexation is whether a search engine has stored your page and is willing to return it. Being crawled is not the same as being indexed, and being indexed is not the same as ranking.
Want to know where you actually stand on this? Run a free visibility check or try the free tools.