gpt4 book ai didi

elasticsearch - Elasticsearch 中_count的作用是什么?

转载 作者:行者123 更新时间:2023-12-03 01:34:25 24 4
gpt4 key购买 nike

flex 搜索中_count的作用是什么?我知道我可以使用端点_search在 flex 搜索中获取数据。

谢谢

最佳答案

_count API的目的仅仅是获得给定查询的匹配数。

它接受与_search API相同的输入,但不返回任何匹配,而只是返回匹配数。

带有size=0的Search API将返回以下内容:

POST index/_search?size=0
{
"took" : 0,
"timed_out" : false,
"_shards" : {
"total" : 3,
"successful" : 3,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 10931164,
"max_score" : 0.0,
"hits" : [ ]
}
}

尽管Count API将返回以下内容:
POST index/_count
{
"count" : 10931164,
"_shards" : {
"total" : 3,
"successful" : 3,
"skipped" : 0,
"failed" : 0
}
}

关于elasticsearch - Elasticsearch 中_count的作用是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53531706/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com