Show / Hide Table of Contents

    Namespace Lucene.Net.Analysis.Gl

    Analyzer for Galician.

    Classes

    GalicianAnalyzer

    Analyzer for Galician.

    GalicianMinimalStemFilter

    A TokenFilter that applies GalicianMinimalStemmer to stem Galician words.

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

    GalicianMinimalStemFilterFactory

    Factory for GalicianMinimalStemFilter.

    <fieldType name="text_glplural" class="solr.TextField" positionIncrementGap="100">
      <analyzer>
        <tokenizer class="solr.StandardTokenizerFactory"/>
        <filter class="solr.LowerCaseFilterFactory"/>
        <filter class="solr.GalicianMinimalStemFilterFactory"/>
      </analyzer>
    </fieldType>

    GalicianMinimalStemmer

    Minimal Stemmer for Galician

    This follows the "RSLP-S" algorithm, but modified for Galician. Hence this stemmer only applies the plural reduction step of: "Regras do lematizador para o galego"

    GalicianStemFilter

    A TokenFilter that applies GalicianStemmer to stem Galician words.

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

    GalicianStemFilterFactory

    Factory for GalicianStemFilter.

    <fieldType name="text_glstem" class="solr.TextField" positionIncrementGap="100">
      <analyzer>
        <tokenizer class="solr.StandardTokenizerFactory"/>
        <filter class="solr.LowerCaseFilterFactory"/>
        <filter class="solr.GalicianStemFilterFactory"/>
      </analyzer>
    </fieldType>

    GalicianStemmer

    Galician stemmer implementing "Regras do lematizador para o galego".

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