Re: handling stopwords for special scenarios

2020-04-09 Thread Walter Underwood
Agreed, leave the stopwords alone. I ran into this same problem thirteen years ago at Netflix. Even before that, I wasn’t removing stopwords, but I accidentally left them in the Solr 1.3 config. https://observer.wunderwood.org/2007/05/31/do-all-stopword-queries-matter/ wunder Walter Underwood wu

Re: handling stopwords for special scenarios

2020-04-09 Thread Erick Erickson
1> why use stopwords at all? They’re largely a holdover from the bad old days when memory was limited. I usually recommend people just start by not using stopwords at all. 2> assuming <1> doesn’t work for you, why doesn’t it look feasible to remove here from the stopword list? True

handling stopwords for special scenarios

2020-04-09 Thread rashi gandhi
Hi All, We are using stopword filter factory at both index and search time, to omit the stopwords. However, for a one particular case, we are getting "here" as a search query and "here" is one the words in title/name representing our client. We are returning zero results as "here" is one of the E