Click or drag to resize

AnalyzerPropertiesStopWords Property

An Analyzer is capable of removing specified tokens from the input. It uses binary comparison to determine if an input token should be discarded. It checks for exact matches. If the input contains only a substring that matches one of the defined stopwords, then it is not discarded. Longer inputs such as prefixes of stopwords are also not discarded.

Namespace:  ArangoDBNetStandard.AnalyzerApi.Models
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public List<string> StopWords { get; set; }

Property Value

Type: ListString
See Also