I'm using index time boosting and need to specify every field I want
to search (not use copy fields) or else the boosting wont work.

This query with 1 saerchterm works fine, boosts look good:

http://localhost:8983/solr/select/?
q=companyName:foo
+descriptionTxt:verslun
&fl=*%20score&rows=10&start=0

However if I have 2 words in the query and do it like this boosting
seems not to be working

http://localhost:8983/solr/select/?
q=companyName:foo+bar
+descriptionTxt:foo+bar
&fl=*%20score&rows=10&start=0

Its probably using the default search field for the second word which
has no boosting configured. How do I go about this?

Thanks,
Jon

Reply via email to