Show / Hide Table of Contents

    Namespace Lucene.Net.Analysis.Es

    Analyzer for Spanish.

    Classes

    SpanishAnalyzer

    Analyzer for Spanish.

    You must specify the required LuceneVersion compatibility when creating SpanishAnalyzer:

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

    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>

    SpanishLightStemmer

    Light Stemmer for Spanish

    This stemmer implements the algorithm described in: Report on CLEF-2001 Experiments Jacques Savoy

    • Improve this Doc
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)