specialized database index to accelerate full-text search
In information science, an inverted index (also referred to as a postings list, postings file, or inverted file) is a database index storing a mapping from content, such as words or numbers, … Wikipedia
🌐
Wikipedia
en.wikipedia.org › wiki › Inverted_index
Inverted index - Wikipedia
May 17, 2026 - The purpose of an inverted index is to allow fast full-text searches, at a cost of increased processing when a document is added to the database. The inverted file may be the database file itself, rather than its index. It is the most popular data structure used in document retrieval systems, ...
🌐
LIS Academy
lis.academy › information-processing-retrieval › how-indexing-information-representation-retrieval
How Indexing and Information Representation Drive Information Retrieval - LIS (Library & Information Science) Academy
November 9, 2025 - It’s called “inverted” because instead of organizing information by document and then listing the terms each contains (as in a forward index), it organizes information by term and then lists the documents containing each term.
🌐
Cockroach Labs
cockroachlabs.com › home › resources › blog › what is an inverted index, and why should you care?
What is an inverted index, and why should you care?
August 17, 2023 - As you can see, this index lists the location of each word (called a token) in the table. Inverted indexes are used to facilitate more efficient full-text searches in a database.
🌐
Baeldung
baeldung.com › home › data structures › indexing: inverted index
Indexing: Inverted Index | Baeldung on Computer Science
March 18, 2024 - An inverted index works by mapping each unique word or term in a set of documents to the documents in which it occurs. This is in contrast to a forward index, which maps each document to the words it contains.
🌐
Stanford NLP Group
nlp.stanford.edu › IR-book › html › htmledition › a-first-take-at-building-an-inverted-index-1.html
A first take at building an inverted index
This information is not vital for ... query processing. This inverted index structure is essentially without rivals as the most efficient structure for supporting ad hoc text search....
🌐
Inverted
docs.inverted.ai › en › latest › pythonapi › sdk-drive.html
DRIVE - invertedai-drive 0.1.4 documentation
invertedai.api.drive(location: str, agent_states: List[AgentState], agent_attributes: Optional[List[AgentAttributes]] = None, agent_properties: Optional[List[AgentProperties]] = None, recurrent_states: Optional[List[RecurrentState]] = None, traffic_lights_states: Optional[Dict[int, TrafficLightState]] = None, light_recurrent_states: Optional[List[LightRecurrentState]] = None, get_birdview: bool = False, rendering_center: Optional[Tuple[float, float]] = None, rendering_fov: Optional[float] = None, get_infractions: bool = False, random_seed: Optional[int] = None, api_model_version: Optional[str] = None) → DriveResponse[source]# Update the state of all given agents forward one time step. Agents are identified by their list index.
🌐
GeeksforGeeks
geeksforgeeks.org › dbms › inverted-index
Inverted Index - GeeksforGeeks
April 18, 2026 - Efficient search: By indexing every term in every document, the index can quickly identify all documents that contain a given search term or phrase, significantly reducing search time. Fast updates: Inverted indexes can be updated quickly and efficiently as new content is added to the system.
Find elsewhere
🌐
ClickHouse
clickhouse.com › blog › clickhouse-search-with-inverted-indices
Introducing Inverted Indices in ClickHouse
March 3, 2026 - lemmatization and stemming as language-specific techniques to reduce words to their linguistic word root, e.g., "walking" becomes "walk", "went" becomes "go", "driving" becomes "drive" etc. ClickHouse also stores the posting lists in a compressed format (more specifically as "roaring bitmap") with the goal of reducing their memory consumption. We will dig a bit deeper into posting list compression below. In the initial inverted index version, posting lists refer to the row positions of the documents which contain the corresponding term.
🌐
Medium
satyadeepmaheshwari.medium.com › inverted-index-the-backbone-of-modern-search-engines-8bfd19a9ff75
Inverted Index: The Backbone of Modern Search Engines | by Satya Deep Maheshwari | Medium
April 19, 2025 - These keep your memory and storage from becoming a digital hoarder’s garage. In an inverted index, a term is a normalized unit of text (a keyword), and a field is the part of the document where the term occurs (like title, body, tags).
🌐
Milvus
milvus.io › home › ai reference › how does an inverted index work?
How does an inverted index work?
For instance, if the term “apple” appears in document IDs 1 and 3, the postings list for “apple” would store [1, 3]. Positional data might track that “apple” appears at character offsets 10 and 25 in document 1. This process allows the index to quickly answer questions like “Which documents contain 'apple’?” or “Where does ‘apple’ appear in document 1?” · When a user submits a search query, the inverted index retrieves the postings lists for each term in the query.
🌐
PingCAP
pingcap.com › home › articles › inverted index vs other indexes: key differences
Inverted Index vs Other Indexes: Key Differences
December 12, 2024 - Indexing is a cornerstone of database performance, significantly enhancing the speed of data retrieval by minimizing the number of disk accesses required. Among various indexing techniques, understanding the distinctions between them is crucial for optimizing database systems. This blog will delve into the key differences between the inverted index and other common indexing methods.
🌐
DataSunrise
datasunrise.com › home › elasticsearch inverted index: the key to fast data retrieval
Elasticsearch Inverted Index | Knowledge Center
July 18, 2025 - When you perform a search query in Elasticsearch, it leverages the index to efficiently retrieve matching documents. Rather than scanning each document linearly, Elasticsearch finds matches by querying the inverted index directly—making it ideal for large datasets.
Top answer
1 of 3
16

Here is an array:

  • A[0] = Alice
  • A[1] = Bob
  • A[2] = Charlie

Here 0,1,2 are indices.

Now suppose that we want to know which index contains a given word. Then we use a dictionary:

  • D[Alice] = 0
  • D[Bob] = 1
  • D[Charlie] = 2

This is an inverted index (according to your Wikipedia quote).


The word index has different meaning in different contexts:

  • Technical books often have an index of terms at the end.
  • The Catholic church held an index of forbidden books.
  • In economics, there are financial indices.
  • In computer science, an index is usually an integer used to index into an array.
2 of 3
9

The reason why we use the term "inverted index" is that the term "index" came to computer science first. In fact, it has several common meanings in computer science, but in this case it refers to the more general concept of an efficient lookup data structure for a database.

What we call an "inverted index" is, strictly speaking, an inverted file used as a database index. "Inverted file" is the data structure, and "index" is the use to which it is put. A B-tree data structure, similarly, can be put to more uses than just database indexing, but it makes sense to talk of a "B-tree index".

The index in a book is not the only kind of text index. Strong's Concordance, which is considered an important ancestor of modern full-text search, is a permuted index (specifically, a variant known today as a KWIC index).

The inverted file is not the only data structure that can be used for text/string indexing. Suffix arrays and Burrows-Wheeler indexes are commonly used for strings that don't need linguistic analysis such as indexing DNA or RNA sequences. Some of these index variants have efficient partial match queries.

The signature file (a probabilistic index structure, essentially Bloom filters for text search) was briefly popular, but it turned out to be nowhere near as generally useful as its competitors.

🌐
Velodb
velodb.io › glossary › inverted-index-1
What Is Inverted Index? Full-Text Search in Databases for AI & Log Analytics
January 23, 2026 - In practice, inverted indexes perform best when queries are keyword-driven and data is append-heavy—such as log analytics, document search, or RAG retrieval where users look for specific terms, error codes, or phrases. However, they are less effective for leading wildcard queries (e.g., LIKE ...
Top answer
1 of 9
266

One common use is "...to allow fast full-text searching."

The two types denote directionality. One takes you forward through the index, and the other takes you backward (the inverse) through the index. That's it. There's no mystery to uncover here. Otherwise the two types are identical, it's just a question of what information you have, and as a result what information you're trying to find.

To address your inquiry, I don't think there's actually a way to know why the use is what it is today. The only reason it's important to define which is forward and which one is inverted is so that we can all have a conversation about them, and everyone knows which direction we're talking about. Think about the terms "left" and "right": they are relative. Which is which doesn't matter, except that everyone needs to agree which one is "left" and which one is "right" in order for the words to have meaning. If, as a culture, we decided to flip left and right, then you'd have the same issue figuring out what a "right turn" vs a "left turn" is since the agreed upon meaning had changed. However, the naming is arbitrary, so which one is which (in and of itself) doesn't matter - what matters is that we all agree on the meaning.

In your comment where you ask, "please don't just define the terms", you're missing the point, and I think you're just getting hung up on the wording when there is absolutely no difference between them.


For the benefit of future readers, I will now provide several "forward" and "inverted" index examples:

Example 1: Web search

If you're thinking that the inverse of an index is something like the inverse of a function in mathematics, where the inverse is a special thing that has a different form, then you're mistaken: that's not the case here.

In a search engine you have a list of documents (pages on web sites), where you enter some keywords and get results back.

A forward index (or just index) is the list of documents, and which words appear in them. In the web search example, Google crawls the web, building the list of documents, figuring out which words appear in each page.

The inverted index is the list of words, and the documents in which they appear. In the web search example, you provide the list of words (your search query), and Google produces the documents (search result links).

They are both indexes - it's just a question of which direction you're going. Forward is from documents->to->words, inverted is from words->to->documents.

Example 2: DNS

Another example is a DNS lookup (which takes a host name, and returns an IP address) and a reverse lookup (which takes an IP address, and gives you the host name).

Example 3: A book

The index in the back of a book is actually an inverted index, as defined by the examples above - a list of words, and where to find them in the book. In a book, the table of contents is like a forward index: it's a list of documents (chapters) which the book contains, except instead of listing the words in those sections, the table of contents just gives a name/general description of what's contained in those documents (chapters).

Example 4: Your cell phone

The forward index in your cell phone is your list of contacts, and which phone numbers (cell, home, work) are associated with those contacts. The inverted index is what allows you to manually enter a phone number, and when you hit "dial" you see the person's name, rather than the number, because your phone has taken the phone number and found you the contact associated with it.

2 of 9
41

They called it inverted just because there is already a forward index. Take the example of search engine, it composed by two parts: the first part is "web crawler and parser" which build a index from document to word, the second part is search database which build a index from word to document. Because of the first index exist, we naturally call the second index as inverted index.

If you name the TOC (Table of Content) of a book as index, then you should call the index at the end of book as "inverted index". Or, in other side, you can call the TOC as inverted index.

🌐
Luigi's Box
luigisbox.com › home › search glossary › inverted index
Inverted Index | Definition | Luigi's Box
June 26, 2024 - Inverted Index is an index that maps keywords to their corresponding documents, enabling fast retrieval.
🌐
Apache
doris.apache.org › blog › inverted-index-accelerates-text-searches-by-40-time-apache-doris
A deep dive into inverted index: how it speeds up text searches by 40 times - Apache Doris
February 1, 2024 - When executing queries of specific words, the system locates the row numbers in this orderly mapping using the skip list index and binary search methods. Based on the row numbers, the system retrieves the entire data record. This approach avoids line-by-line matching and reduces computational complexity from O(n) to O(logn). That's how inverted index speeds up queries on large datasets.
🌐
Educative
educative.io › answers › what-is-an-inverted-index
What is an inverted index?
The inverted index is a data structure that allows efficient, full-text searches in the database.
🌐
InfluxData
influxdata.com › home › what is an inverted index? | influxdata
Inverted Index
March 8, 2024 - The ‘inverted’ index name refers to the reversal of the normal relationship seen in a forward index - instead of listing content and then its location, the inverted index lists the terms and their corresponding locations.