On Mon, Sep 7, 2009 at 2:49 AM, darniz<rnizamud...@edmunds.com> wrote: > Does solr provide any implementation for dictionary stemmer, please let me > know
The Krovetz stemmer is dictionary based (english only): http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters/Kstem But from your original question, maybe you are concerned when the stemmer doesn't return real words? For normal search, don't be. During index time, words are stemmed, and then later the query is stemmed. If the results match up, you're good. For example, a document containing the word "machines" may stem to "machin" and then a query of "machined" will stem to "machin" and thus match the document. -Yonik http://www.lucidimagination.com