Re: help with dismax query handler syntax

2006-09-25 Thread Chris Hostetter
Sorry for the late reply, the "fq" param is the recommended way to filter results without affecting scoring for both the dismax handler and the standard handler. if you want to affect scoring without affecting matching, the "bq" param of dismax is usefull instead. : Nevermind, I got it ... Someh

Re: help with dismax query handler syntax

2006-09-25 Thread Luis Neves
Nevermind, I got it ... Somehow I missed the javadoc. -- Luis Neves Luis Neves wrote: Hello all, Using the standard query handler I can search for a term excluding a category and sort descending by price, e.g.: http://localhost/solr/select/?q=book+-Category:Adults;Price+desc&start=0&ro

help with dismax query handler syntax

2006-09-25 Thread Luis Neves
Hello all, Using the standard query handler I can search for a term excluding a category and sort descending by price, e.g.: http://localhost/solr/select/?q=book+-Category:Adults;Price+desc&start=0&rows=10&fl=*,score I'm scratching my head on how to do the same with the Dismax query handler,