Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Namespace Lucene.Net.Analysis.Gl

    Analyzer for Galician.

    Classes

    GalicianAnalyzer

    Lucene.Net.Analysis.Analyzer for Galician.

    GalicianMinimalStemFilter

    A Lucene.Net.Analysis.TokenFilter that applies GalicianMinimalStemmer to stem Galician words.

    To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom Lucene.Net.Analysis.TokenFilter that sets the KeywordAttribute before this Lucene.Net.Analysis.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 Lucene.Net.Analysis.TokenFilter that applies GalicianStemmer to stem Galician words.

    To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom Lucene.Net.Analysis.TokenFilter that sets the KeywordAttribute before this Lucene.Net.Analysis.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 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.