一尘不染

如何在elasticsearch-dsl python中启用track_scores

elasticsearch

我正在使用elasticsearch dsl搜索elasticsearch:https : //elasticsearch-
dsl.readthedocs.org/en/latest/

如何为查询启用track_scores?

我知道它在Elasticsearch中受支持:https//www.elastic.co/guide/en/elasticsearch/reference/current/search-
request-
sort.html#_track_scores

只是不知道如何在Elasticsearch-dsl中做同样的事情


阅读 376

收藏
2020-06-22

共1个答案

一尘不染

我发现在文档中提到了这一点:

http://elasticsearch-dsl.readthedocs.org/en/latest/search_dsl.html#extra-
properties-and-parameters

s = s.extra(track_scores=True)

这工作了。

2020-06-22