Have anybody compared these stemmers from Lucene (package org.tartarus.snowball.ext):
EnglishStemmer, PorterStemmer, LovinsStemmer?
What are the strong/weak points of algorithms behind them?
When each of them should be used?
Or maybe there are some more algorithms ...
I add to solr index: "American". When I search by "America" there is no results.
How should schema.xml be configured to get results?
current configuration:
I'm processing some English texts in a Java application, and I need to stem them.
For example, from the text "amenities/amenity" I need to get "amenit".
The function looks like:
I have stemming enabled in my Solr instance, I had assumed that in order to perform an exact word search without disabling stemming, it would be as simple as putting the ...
Sorry for a title that bad, but i didn't know how to describe my problem.
I'm using sunburnt (python interface) to query solr within my django app.
When i'm searching, everything is ok, ...