Search and filter
To specify how the search engine handles words/phrazes you use analyzers.
We recommend the following analyzers:
- KeywordAnalyzer - splts words and phrases based on keywords
- WhitespaceAnalyzer - splts words and phrases based on whitespace
- StandardAnalyzer - Splits words and phrases based on whitepsace, hyphen, comma, full stop, recognizes e-mail addresses and domain names etc.
The standard analyser is by default used in Litium Studio if no other analyzer is specified. Analyzer should be with or without "analyzer" in the name.
In Litium Studio the specification is set in the Tag
var term = "min söksträng";
request.FilterTags.Add(new Tag(FieldNames.Body, term) { Analyzer = "whitespace" });