Enum ScoreMode
How to aggregate multiple child hit scores into a single parent score.
Assembly: Lucene.Net.Join.dll
Syntax
public enum ScoreMode : int
Fields
Name | Description |
---|---|
Avg | Parent hit's score is the average of all child scores. |
Max | Parent hit's score is the max of all child scores. |
None | Do no scoring. |
Total | Parent hit's score is the sum of all child scores. |