C# (CSharp) Lucene.Net.Analysis.Es Namespace

Classes

Name Description
SpanishAnalyzer Analyzer for Spanish.

You must specify the required Version compatibility when creating SpanishAnalyzer:

  • As of 3.6, SpanishLightStemFilter is used for less aggressive stemming.

SpanishAnalyzer.DefaultSetHolder Atomically loads the DEFAULT_STOP_SET in a lazy fashion once the outer class accesses the static final set the first time.;
SpanishLightStemFilter A TokenFilter that applies SpanishLightStemmer to stem Spanish words.

To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom TokenFilter that sets the KeywordAttribute before this TokenStream.

SpanishLightStemFilterFactory Factory for SpanishLightStemFilter.
 <fieldType name="text_eslgtstem" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.SpanishLightStemFilterFactory"/> </analyzer> </fieldType>
TestSpanishAnalyzer
TestSpanishLightStemFilter Simple tests for SpanishLightStemFilter
TestSpanishLightStemFilter.AnalyzerAnonymousInnerClassHelper
TestSpanishLightStemFilter.AnalyzerAnonymousInnerClassHelper2
TestSpanishLightStemFilterFactory Simple tests to ensure the Spanish Light stem factory is working.