Hello everyone :) I have an index for groupId and one for product. For an input search keyword, I only want to boost the result if the keyword appears in both groupId and product indices. I was able to get Solr join with fq to work with the following syntax: example: q=searchTerm&fq={!join from=id_1 to=id_2 fromIndex=groupId}searchTerm
But I want to use solr join with bf or bq, does anyone have suggestions on how to make it work? (I also use qf, pf, and ps) I tried the following but failed: q=searchTerm&bf=({!join from=id_1 to=id_2 fromIndex=groupId}searchTerm)^100 q=searchTerm&bq=({!join from=id_1 to=id_2 fromIndex=groupId}searchTerm)^100 Many thanks jia