Interface IStandardAnalyzer
An analyzer of type standard that is built of using Standard Tokenizer, with Standard Token Filter, Lower Case Token Filter, and Stop Token Filter.
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IStandardAnalyzer : IAnalyzer
Properties
| Edit this page View SourceMaxTokenLength
The maximum token length. If a token is seen that exceeds this length then it is discarded. Defaults to 255.
Declaration
[DataMember(Name = "max_token_length")]
int? MaxTokenLength { get; set; }
Property Value
Type | Description |
---|---|
int? |
StopWords
A list of stopword to initialize the stop filter with. Defaults to the english stop words.
Declaration
[DataMember(Name = "stopwords")]
StopWords StopWords { get; set; }
Property Value
Type | Description |
---|---|
StopWords |