Interface ILanguageAnalyzer
A set of analyzers aimed at analyzing specific language text.
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface ILanguageAnalyzer : IAnalyzer
Properties
| Edit this page View SourceStemExclusionList
The stem_exclusion parameter allows you to specify an array of lowercase words that should not be stemmed.
Declaration
[DataMember(Name = "stem_exclusion")]
IEnumerable<string> StemExclusionList { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
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 |
StopwordsPath
A path (either relative to config location, or absolute) to a stopwords file configuration.
Declaration
[DataMember(Name = "stopwords_path")]
string StopwordsPath { get; set; }
Property Value
Type | Description |
---|---|
string |