Hi all, Is this the best (performance-wise as well as efficacy) order of applying analyzers/filters? We have an eCom site where the many products are listed, and users may type in search words and get relevant results.
1) Tokenize on whitespace (WhitespaceTokenizerFactory) 2) Remove stopwords (StopFilterFactory) 3) Stem (PorterStemFilterFactory) 4) Convert to lowercase (LowerCaseFilterFactory) 5) Add synonyms (SynonymGraphFilterFactory,FlattenGraphFilterFactory) Any possible gotchas? Regards, Jayadevan