node-search
node-search copied to clipboard
Add stemming for other languages or delegate stemming into separate module
There are different stemming algorithms for different languages. What about including them as well?
Sure, do you have links to ones you would suggest? Do you know of a way of automatically choosing which stemmer to use?
Postgres has good stemming, I do not know where exactly you can find it, but it is part of tsearch. For PHP, there exists an own stemming library as PECL module. The best solution would be a native implementation. If I had more time, I would help you manage this, because it's important to have a good stemmer.
Thanks, I'll look into it.