ScoreMode
- Namespace
- Rowles.LeanLucene.Search.Queries
- Assembly
- Rowles.LeanLucene.dll
How to combine the inner query's BM25 score with the numeric field value.
public enum ScoreMode
Fields
Max = 3Takes the maximum of the query score and the numeric field value.
Multiply = 0Multiplies the query score by the numeric field value.
Replace = 1Replaces the query score entirely with the numeric field value.
Sum = 2Adds the numeric field value to the query score.