C# (CSharp) Lucene.Net.Analysis.Id Namespace

Classes

Name Description
IndonesianAnalyzer Analyzer for Indonesian (Bahasa)
IndonesianAnalyzer.DefaultSetHolder Atomically loads the DEFAULT_STOP_SET in a lazy fashion once the outer class accesses the static final set the first time.;
IndonesianStemFilter A TokenFilter that applies IndonesianStemmer to stem Indonesian words.
IndonesianStemFilterFactory Factory for IndonesianStemFilter.
 <fieldType name="text_idstem" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.IndonesianStemFilterFactory" stemDerivational="true"/> </analyzer> </fieldType>
IndonesianStemmer Stemmer for Indonesian.

Stems Indonesian words with the algorithm presented in: A Study of Stemming Effects on Information Retrieval in Bahasa Indonesia, Fadillah Z Tala. http://www.illc.uva.nl/Publications/ResearchReports/MoL-2003-02.text.pdf

TestIndonesianStemFilterFactory Simple tests to ensure the Indonesian stem filter factory is working.