Hello all, We are having a website built with a search engine based on SOLR v3.6. We submit terms (keywords) as singulars, and the code is supposed to add (search for) plurals.
Most search terms work, but we have an issue with plural terms that end in -ee, -oe, -ie, -ae, and words that end in -s. In comparison, the following work fine: words that end with -oo, -ue, -e, -a. The developers have been unable to find a solution, but this has to be a common issue (?) Someone surely has found a solution to this problem?? I am not a coder, but we are quite desperate to find a solution to this issue, as search absolutely needs to work. Here was the developers feedback: "Unfortunately we tried to apply all the filters for stemming but this problem is not resolved". https://wiki.apache.org/solr/LanguageAnalysis#English Any suggestions greatly appreciated. Thanks! Sara _____________________ DO NOT WORK: Plural terms that end in -ee, -oe, -ie, -ae, and words that end in -s. Examples: palm tree = 0 results palm trees = 21 results bees = 1 result bee = 0 results dungarees = 1 result dungaree = 0 results shoes = 1 result shoe = 0 results toe = 1 result toes = 0 results tie = 1 result ties = 0 results Crees = 1 result Cree = 0 results dais = 1 result daises = 0 results bias = 1 result biases = 0 results dress = 1 result dresses = 0 results _____________________ WORK: In comparison, the following work fine: words that end with -oo, -ue, -e, -a Examples: tide = 1 result tides = 1 results hues = 2 results hue = 2 results dakota = 1 result dakotas = 1 result loo = 1 result loos = 1 result _____________________