Apache Lucene.Net 2.4.0 Class Library API

Analyzer.GetPositionIncrementGap Method 

Invoked before indexing a Fieldable instance if terms have already been added to that field. This allows custom analyzers to place an automatic position increment gap between Fieldable instances using the same field name. The default value position increment gap is 0. With a 0 position increment gap and the typical default token position increment of 1, all terms in a field, including across Fieldable instances, are in successive positions, allowing exact PhraseQuery matches, for instance, across Fieldable instance boundaries.

public virtual int GetPositionIncrementGap(
   string fieldName
);

Parameters

fieldName
Fieldable name being indexed.

Return Value

position increment gap, added to the next token emitted from {@link #TokenStream(String,Reader)}

See Also

Analyzer Class | Lucene.Net.Analysis Namespace