Re: Solr changing the search when given many qf fields?

2018-08-16 Thread Aaron Gibbons
Thank you Emir! This was certainly the case. One field was processed with EdgeNGramTokenizerFactory and should not have been. Fixed. On Thu, Aug 16, 2018 at 4:46 AM, Emir Arnautović < emir.arnauto...@sematext.com> wrote: > Hi Aaron, > It is probably not about number of fields but related to

Re: Solr changing the search when given many qf fields?

2018-08-16 Thread Emir Arnautović
Hi Aaron, It is probably not about number of fields but related to different analysis of different fields. As long as all your fields analyzers produce the same tokens you should get “term centric” query. Once any of your analyzers produce different token, it’ll become “field centric”. It is

Solr changing the search when given many qf fields?

2018-08-15 Thread Aaron Gibbons
I found a tipping point where the search being built changes with the number of qf fields being passed in. Example search: "foo bar" solr 7.2.1 select?q.op=AND=edismax=foo bar Debugging the query you can see it results in: "parsedquery_toString":"+(+(text:foo) +(text:bar))" Adding more qf