Monitoring the impact of the number of agreed offers on the valuation in Solr

By default, Solr multiplies the score of each document by the coordination factor - part of the agreed queries - so that there are more sentences that match a higher result. I would like to be able to control the degree of influence of the coordinating factor on the account. In other words, I would like to add a query-dependent gain to the coordinating factor. Currently, the only parameter that can be configured only upon request is either the inclusion or deactivation of the coordination coefficient. This parameter does not allow me to increase or decrease the value of the coordination factor. How to add such a parameter to Solr?

Any decision that allows me to influence the assessment in accordance with part of the agreed proposals that are set up during the request will be made, even if it has nothing to do with the coordination factor.

+3
source share
1 answer

I see a simple and powerful way to do this is to use a "boost request". You can use an increase in query time to enhance some results.

Example 1 : q=country:brazil^10 sport:soccer
objective of this query:  select city that has sport "soccer" and we will have a preference for the country of brazil!

Take a look at the help documentation.

Is this what you wanted to have? give me some feedback!

0
source

All Articles