你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ScoringStatistics Enum
- java.
lang. Object - java.
lang. Enum - com.
azure. search. documents. models. ScoringStatistics
- com.
- java.
public enum ScoringStatistics
extends Enum<ScoringStatistics>
A value that specifies whether we want to calculate scoring statistics (such as document frequency) globally for more consistent scoring, or locally, for lower latency. The default is 'local'. Use 'global' to aggregate scoring statistics globally before scoring. Using global scoring statistics can increase latency of search queries.
Fields
GLOBAL |
The scoring statistics will be calculated globally for more consistent scoring. |
LOCAL |
The scoring statistics will be calculated locally for lower latency. |
Methods inherited from java.lang.Enum
Methods inherited from java.lang.Object
Methods
fromString(String value)
public static ScoringStatistics fromString(String value)
Parses a serialized value to a ScoringStatistics instance.
Parameters
- value
- String