Query terms are the individual words and tokens extracted from what a user types. Stores use clean query terms—after normalization and stopword handling—to match the right products fast.
Query terms are the tokens produced from a user’s input after analysis (lowercasing, accent folding, tokenization). They include single words, numbers, symbols, and sometimes phrases/bigrams or entities (e.g., “air”, “max”, “270”, “GORE-TEX”, “size 45”).
Query terms are the analyzed building blocks of retrieval. Get tokenization, normalization, and field mapping right to keep results fast, precise, and explainable.
Query terms vs keywords?
“Keywords” are SEO/strategy targets; query terms are the analyzed tokens used at retrieval time.
Should I always remove stopwords?
Usually soften, not remove—some can matter in product names.
Do vectors replace terms?
No—keep lexical terms for precision, filters, and speed; vectors add meaning.