Table of Contents

Public enum 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 = 3

Takes the maximum of the query score and the numeric field value.

Multiply = 0

Multiplies the query score by the numeric field value.

Replace = 1

Replaces the query score entirely with the numeric field value.

Sum = 2

Adds the numeric field value to the query score.