Inverted Index

An inverted index is a data structure that maps each term to the list of documents (products) containing it, allowing a keyword search engine to find matches quickly without scanning the entire catalog per query.

Part of Search Infrastructure

It's the standard structure behind lexical search, distinct from the vector index used for semantic matching — many hybrid search systems maintain both.

Related terms