Class NGramTokenFilter
Tokenizes the input into n-grams of the given size(s).
You must specify the required Lucene.Net.Util.LuceneVersion compatibility when creating a NGramTokenFilter. As of Lucene 4.4, this token filters:
- handles supplementary characters correctly,
- emits all n-grams for the same token at the same position,
- does not modify offsets,
- sorts n-grams by their offset in the original token first, then increasing length (meaning that "abc" will give "a", "ab", "abc", "b", "bc", "c").
You can make this filter use the old behavior by providing a version < LUCENE_44 in the constructor but this is not recommended as it will lead to broken Lucene.Net.Analysis.TokenStreams that will cause highlighting bugs.
If you were using this Lucene.Net.Analysis.TokenFilter to perform partial highlighting, this won't work anymore since this filter doesn't update offsets. You should modify your analysis chain to use NGramTokenizer, and potentially override IsTokenChar(Int32) to perform pre-tokenization.
Inheritance
Implements
Inherited Members
Namespace: Lucene.Net.Analysis.NGram
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public sealed class NGramTokenFilter : TokenFilter, IDisposable
Constructors
| Improve this Doc View SourceNGramTokenFilter(LuceneVersion, TokenStream)
Creates NGramTokenFilter with default min and max n-grams.
Declaration
public NGramTokenFilter(LuceneVersion version, TokenStream input)
Parameters
Type | Name | Description |
---|---|---|
Lucene.Net.Util.LuceneVersion | version | Lucene version to enable correct position increments. See NGramTokenFilter for details. |
Lucene.Net.Analysis.TokenStream | input | Lucene.Net.Analysis.TokenStream holding the input to be tokenized |
NGramTokenFilter(LuceneVersion, TokenStream, Int32, Int32)
Creates NGramTokenFilter with given min and max n-grams.
Declaration
public NGramTokenFilter(LuceneVersion version, TokenStream input, int minGram, int maxGram)
Parameters
Type | Name | Description |
---|---|---|
Lucene.Net.Util.LuceneVersion | version | Lucene version to enable correct position increments. See NGramTokenFilter for details. |
Lucene.Net.Analysis.TokenStream | input | Lucene.Net.Analysis.TokenStream holding the input to be tokenized |
System.Int32 | minGram | the smallest n-gram to generate |
System.Int32 | maxGram | the largest n-gram to generate |
Fields
| Improve this Doc View SourceDEFAULT_MAX_NGRAM_SIZE
Declaration
public const int DEFAULT_MAX_NGRAM_SIZE = 2
Field Value
Type | Description |
---|---|
System.Int32 |
DEFAULT_MIN_NGRAM_SIZE
Declaration
public const int DEFAULT_MIN_NGRAM_SIZE = 1
Field Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceIncrementToken()
Returns the next token in the stream, or null at EOS.
Declaration
public override sealed bool IncrementToken()
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
Reset()
Declaration
public override void Reset()