Hi,

Here's an example of the analyzer main's method:

  public TokenStream tokenStream(String fieldName, Reader reader) {
    TokenStream result = new StandardTokenizer(reader);
    result = new StandardFilter(result);
    result = new LowerCaseFilter(result);
    result = new StopFilter(result, stopSet);
    result = new PorterStemFilter(result);
    return result;
  }


Samir


-----Message d'origine-----
De : spinergywmy [mailto:[EMAIL PROTECTED] 
Envoyé : lundi, 27. août 2007 12:51
À : java-user@lucene.apache.org
Objet : RE: Get results from partial search keyword


Hi,

   Just wonder do you have any example that I can refer to on how to use the
stemmer filter?

   Thank you.
-- 
View this message in context:
http://www.nabble.com/Get-results-from-partial-search-keyword-tf4333228.html
#a12344878
Sent from the Lucene - Java Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to