Click or drag to resize
SearchAnalyzerTypeEnum Enumeration
Search analyzer type enum.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 12.0.0
Syntax
C#
public enum SearchAnalyzerTypeEnum
Members
  Member nameValueDescription
SimpleAnalyzer0 SimpleAnalyzer - divides text at non-letters, lowercase.
StopAnalyzer1 StopAnalyzer - divides text at non-letters, use of stop words.
WhiteSpaceAnalyzer2 WhiteSpaceAnalyzer - divides text at whitespace, lowercase.
StandardAnalyzer3 StandardAnalyzer - grammar based, lowecase, good for most European-language documents.
KeywordAnalyzer4 "Tokenizes" the entire stream as a single token. This is useful for data like zip codes, ids, and some product names.
CustomAnalyzer5 Custom analyzer.
SubsetAnalyzer6 Subset analyzer - whitespace, lowercase, searched text is processed as *word*.
StartsWithanalyzer7 Starts with analyzer - whitespace, lowercase, searched text is processed as word*.
SimpleWithStemmingAnalyzer8 Simple analyzer with stemmer involved.
StopWithStemmingAnalyzer9 Stop word analyzer with stemmer involved.
WhitespaceWithStemmingAnalyzer10 Whitespace analyzer with stemmer involved.
See Also