I have a problem with the default Solr scoring algorithm that determines the scope of my collection. In my domain, documents containing all of the query terms or most of the query terms are significantly more important than documents containing only a few terms. I would like to increase the number of documents so that the more matches, the higher the rating. I know that solr already raises such documents by multiplying the estimate by the coordination coefficient. However, the coordinating factor is insignificant for me, and I want to raise it to a certain extent. I am also familiar with the syntax setting of ExtendedDismax Minimum-Should-Match, but this function does not solve my problem, because I do not want to exclude documents that do not meet sufficient conditions, I just want to "punish" them.
Is there a way to increase the value of the coordination factor? I also agree with other solutions that do not use the coordination factor if they solve the problem.
source
share