I have a Solr instance with the number of documents and indexed field.
Now I want to apply the list of stops in the query to increase the number of results, completely ignoring during the query the words included in the list of stop words.
So in my configuration I use solr.StopFilterFactoryin the queryanalyzer.
I expect that if I performed a search with only one word that is in the list of stop words, then the result set will be the same as for the wildcard query text_title:*, i.e. a complete set of documents.
But instead, I get 0 results. Am I missing something about the behavior of the stop word filter?
source
share