HI all: I am trying to figure out a way to do the following: &qf=field1^10 field2^20 field^100&fq=*:9+OR+(field1:"xyz")
*Expected Results: The above should return me documents where 9 appears in any of the fields (field1,field2 or field3) OR field1 matches "xyz". * I know I can use copy field (say 'text') to copy all the fields and then use: &qf=field1^10 field2^20 field^100&fq=*text*:9+OR+(field1:"xyz" ^100.0) but doing so , the boost weights specified in the 'qf' field have no effect on the score. I am using solr 1.4 and the searchHandler is dismax. Is there any way I can achieve the above expected results but still affect the score with qf parameter ? Thanks, ~Ravi Gidwani.