Might "with" be a stop word removed by one of those qf fields? That'd explain why mm=3 doesn't work, I think.
Erik On Feb 11, 2011, at 15:43 , Tanner Postert wrote: > I'm having a problem using the dismax query for the term "obsessed with > winning" > > http://localhost:8983/solr/core1/select?q=obsessed+with+winning&fq=code:xyz&shards=localhost:8983/solr/core1,localhost:8983/solr/core2,&rows=10&start=0&defType=dismax&qf=title > ^10+description^4+text^1&debugQuery=true > > that query yields zero results, but removing the dismax stuff it works > fine: > > http://localhost:8983/solr/core1/select?q=obsessed+with+winning&fq=code:xyz&shards=localhost:8983/solr/core1,localhost:8983/solr/core2,&rows=10&start=0&debugQuery=true > > or even adding the mm=2 yields results, but mm=3 does not. > > There is at least 1 record which contains the exact phrase 'obsessed with > winning' in the title as well as the description multiple times, yet when > the defType=dismax option is added, the query yields no results. Am I > missing something? > > Thanks in advance.