If I want to boost multiple fields using Edismax query parser, is following the correct way of doing it:
<requestHandler name="/myHandler" class="solr.SearchHandler"> <lst name="defaults"> <str name="defType">edismax</str> <str name="bq">field1:(apple)^500</str> <str name="bq">field1:(orange)^400</str> <str name="bq">field1:(pear)^300</str> <str name="bq">field2:(4)^500</str> <str name="bq">field2:(2)^100</str> <str name="bf">recip(ms(NOW,mod_date),3.16e-11,1,1)</str> <str name="bf">recip(ms(NOW,creation_date),3.16e-11,1,1)</str> And if boost is configured in solrconfig.xml, can I still pass additional boost queries through boost query? -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html