Different search term on different fields using edismax query parser in solr
问题 I have a solr query that searches on multiple fields. To increase the recall, I also do wildcard and fuzzy query. I use edismax query parser because I also have to use boost function. Here is the relevant parts of the query: defType=edismax&q= (wine AND company) OR (wine* AND company*)^0.5 OR (wine* OR company*)^0.01 OR (wine~1 AND company~1)^0.02&qf=primary_tags^1 secondary_tags_s^0.2 merchant_name_s^0.5 Now, the above query searches for (wine AND company) OR (wine* AND company*)^0.5 OR