Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Namespace Lucene.Net.Analysis.Hu

    Analyzer for Hungarian.

    Classes

    HungarianAnalyzer

    Lucene.Net.Analysis.Analyzer for Hungarian.

    HungarianLightStemFilter

    A Lucene.Net.Analysis.TokenFilter that applies HungarianLightStemmer to stem Hungarian 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.

    HungarianLightStemFilterFactory

    Factory for HungarianLightStemFilter.

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

    HungarianLightStemmer

    Light Stemmer for Hungarian.

    This stemmer implements the "UniNE" algorithm in: Light Stemming Approaches for the French, Portuguese, German and Hungarian Languages Jacques Savoy

    • 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.