Elastic_score 和 Hits 中的 NEST Score 属性 有什么关系?
What is the relation between Elastic _score and the NEST Score property in Hits?
我正在使用 NEST(.NET 客户端)查询 Elastic。 Elastic 使用 属性 - _score 来计算搜索查询的文档分数。 _score 是一个介于 0 和 1 之间的 属性 值。
借助 NEST,可以使用 Hits Collection 从搜索响应中检索元数据。每个 Hit 都有一个名为 Score 的 属性。此 属性 中可用的分数大于 1。通常,它是一个数字,如 2.5、5.1、7.3 等
Elastic计算的_score和NEST的Hits属性中可用的Score有什么关系?
Elasticsearch 搜索响应命中中 _score
字段的值正是 Hit.Score
所代表的。 _score
的值不受 0
和 1
之间的限制。它可以大于 1
.
下面引用自official Elastic doc:
The relevance score of each document is represented by a positive
floating-point number called the _score. The higher the _score, the
more relevant the document.
我正在使用 NEST(.NET 客户端)查询 Elastic。 Elastic 使用 属性 - _score 来计算搜索查询的文档分数。 _score 是一个介于 0 和 1 之间的 属性 值。
借助 NEST,可以使用 Hits Collection 从搜索响应中检索元数据。每个 Hit 都有一个名为 Score 的 属性。此 属性 中可用的分数大于 1。通常,它是一个数字,如 2.5、5.1、7.3 等
Elastic计算的_score和NEST的Hits属性中可用的Score有什么关系?
Elasticsearch 搜索响应命中中 _score
字段的值正是 Hit.Score
所代表的。 _score
的值不受 0
和 1
之间的限制。它可以大于 1
.
下面引用自official Elastic doc:
The relevance score of each document is represented by a positive floating-point number called the _score. The higher the _score, the more relevant the document.