In Solr8
I am trying to execute a negative boost query using bf tag.
Solr8
bf query for a negative boost.
Migrating from Solr6
to Solr8
, so updating negative boost as follows:
Solr6: bq=catConfidence:("0")^-100.0
Solr8: bq=(**:** -catConfidence:"0")^100.0
This works fine for bq tag. I want it as part of bf tag,
bf=(*:* -catConfidence:"0")^100.0
, this is not working.
As a negative boost is not working in Solr8
, I tried
bf= (*:* -catConfidence)^10.0
Any advice on how to write bf for negative boosting.