An index is the data structure that makes search fast. In stores, it organizes product text and attributes so results appear instantly.
An index is the structured representation of your content used by the search engine to retrieve and rank results quickly. It typically includes an inverted index for text, field stores/doc values for attributes and sorting, and optionally a vector index for semantic retrieval.
The index is your search engine’s backbone. With clean fields, locale-aware analysis, fast deltas, and optional vectors, it delivers relevant results at storefront speed.
Index vs database table?
An index is optimized for search & ranking, not OLTP transactions. You’ll still keep a source of truth (PIM/CMS).
Do I need both lexical and vector indexes?
For best results, yes: lexical for precision and speed; vectors for meaning.
When to reindex?
On mapping changes, tokenizer upgrades, or major taxonomy shifts.