Class StopFilterFactory
Factory for StopFilter.
<fieldType name="text_stop" class="solr.TextField" positionIncrementGap="100" autoGeneratePhraseQueries="true">
<analyzer>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt" format="wordset" />
</analyzer>
</fieldType>
All attributes are optional:
ignoreCase defaults to falsewords should be the name of a stopwords file to parse, if not
specified the factory will use ENGLISH_STOP_WORDS_SET
format defines how the words file will be parsed,
and defaults to wordset. If words is not specified,
then format must not be specified.
The valid values for the format option are:
wordset - This is the default format, which supports one word per
line (including any intra-word whitespace) and allows whole line comments
begining with the "#" character. Blank lines are ignored. See
GetLines(Stream, Encoding) for details.
snowball - This format allows for multiple words specified on each
line, and trailing comments may be specified using the vertical line ("|").
Blank lines are ignored. See
for details.
Inheritance
System.Object
StopFilterFactory
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public class StopFilterFactory : TokenFilterFactory, IResourceLoaderAware
Constructors
|
Improve this Doc
View Source
StopFilterFactory(IDictionary<String, String>)
Declaration
public StopFilterFactory(IDictionary<string, string> args)
Parameters
| Type |
Name |
Description |
| IDictionary<System.String, System.String> |
args |
|
Fields
|
Improve this Doc
View Source
Declaration
public const string FORMAT_SNOWBALL = null
Field Value
| Type |
Description |
| System.String |
|
|
Improve this Doc
View Source
Declaration
public const string FORMAT_WORDSET = null
Field Value
| Type |
Description |
| System.String |
|
Properties
|
Improve this Doc
View Source
EnablePositionIncrements
Declaration
public virtual bool EnablePositionIncrements { get; }
Property Value
| Type |
Description |
| System.Boolean |
|
|
Improve this Doc
View Source
IgnoreCase
Declaration
public virtual bool IgnoreCase { get; }
Property Value
| Type |
Description |
| System.Boolean |
|
|
Improve this Doc
View Source
StopWords
Declaration
public virtual CharArraySet StopWords { get; }
Property Value
Methods
|
Improve this Doc
View Source
Create(TokenStream)
Declaration
public override TokenStream Create(TokenStream input)
Parameters
Returns
Overrides
|
Improve this Doc
View Source
Declaration
public virtual void Inform(IResourceLoader loader)
Parameters
Implements