Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Namespace Lucene.Net.Analysis.Br

    Analyzer for Brazilian Portuguese.

    Classes

    BrazilianAnalyzer

    Lucene.Net.Analysis.Analyzer for Brazilian Portuguese language.

    Supports an external list of stopwords (words that will not be indexed at all) and an external list of exclusions (words that will not be stemmed, but indexed).

    NOTE: This class uses the same Lucene.Net.Util.LuceneVersion dependent settings as StandardAnalyzer.

    BrazilianStemFilter

    A Lucene.Net.Analysis.TokenFilter that applies BrazilianStemmer.

    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.

    BrazilianStemFilterFactory

    Factory for BrazilianStemFilter.

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

    BrazilianStemmer

    A stemmer for Brazilian Portuguese words.

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