In SOLR 3.5 text field type the StopFilterFactory is listed before the PorterStemFilterFactory.
does this mean that if I wanted to stop for example "game" and "games" I would have to add both to stopwords?
if so would moving the StopFilterFactory after the PorterStemFilterFactory, and adding just "game" to stopwords cause occurrences of both "game" and "games" to be stripped?
I guess the true question is what is the best way to do this, and do I need to add all variations of the word to stopwords?