﻿---
title: How full-text search works
description: The following diagram illustrates the components of full-text search. At a high level, full-text search involves the following: Text analysis: Analysis...
url: https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/search/full-text/how-full-text-works
products:
  - Elastic Cloud Enterprise
  - Elastic Cloud Hosted
  - Elastic Cloud Serverless
  - Elastic Cloud on Kubernetes
  - Elastic Stack
  - Elasticsearch
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# How full-text search works
The following diagram illustrates the components of full-text search.
![Components of full-text search from analysis to relevance scoring](https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/images/elasticsearch-reference-full-text-search-overview.svg)

At a high level, full-text search involves the following:
- [**Text analysis**](https://www.elastic.co/elastic/docs-builder/docs/3016/manage-data/data-store/text-analysis): Analysis consists of a pipeline of sequential transformations. Text is transformed into a format optimized for searching using techniques such as stemming, lowercasing, and stop word elimination. Elasticsearch contains a number of built-in [analyzers](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/reference/text-analysis/analyzer-reference) and tokenizers, including options to analyze specific language text. You can also create custom analyzers.

<tip>
  Refer to [Test an analyzer](https://www.elastic.co/elastic/docs-builder/docs/3016/manage-data/data-store/text-analysis/test-an-analyzer) to learn how to test an analyzer and inspect the tokens and metadata it generates.
</tip>

- **Inverted index creation**: After analysis is complete, Elasticsearch builds an inverted index from the resulting tokens. An inverted index is a data structure that maps each token to the documents that contain it. It’s made up of two key components:
  - **Dictionary**: A sorted list of all unique terms in the collection of documents in your index.
- **Posting list**: For each term, a list of document IDs where the term appears, along with optional metadata like term frequency and position.
- **Relevance scoring**: Results are ranked by how relevant they are to the given query. The relevance score of each document is represented by a positive floating-point number called the `_score`. The higher the `_score`, the more relevant the document.
  The default [similarity algorithm](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/reference/elasticsearch/index-settings/similarity) Elasticsearch uses for calculating relevance scores is [Okapi BM25](https://en.wikipedia.org/wiki/Okapi_BM25), a variation of the [TF-IDF algorithm](https://en.wikipedia.org/wiki/Tf–idf). BM25 calculates relevance scores based on term frequency, document frequency, and document length. Refer to this [technical blog post](https://www.elastic.co/blog/practical-bm25-part-2-the-bm25-algorithm-and-its-variables) for a deep dive into BM25.
- **Full-text search query**: Query text is analyzed [the same way as the indexed text](https://www.elastic.co/elastic/docs-builder/docs/3016/manage-data/data-store/text-analysis/index-search-analysis), and the resulting tokens are used to search the inverted index.
  Query DSL supports a number of [full-text queries](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/reference/query-languages/query-dsl/full-text-queries).
  As of 8.17, ES|QL also supports [full-text search](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/reference/query-languages/esql/functions-operators/search-functions) functions.