gpt4 book ai didi

elasticsearch - 为什么 searchResult.TotalHits() 与 len(searchResult.Hits.Hits) 不同?

转载 作者:IT王子 更新时间:2023-10-29 02:26:08 31 4
gpt4 key购买 nike

我使用 golang elastic 5 API 在 ElasticSearch 中运行查询。我使用 searchResult.TotalHits() 检查命中数,它给了我一个很大的数字(超过 100),但是当我尝试迭代命中时,它只给出了 10 个实体。此外,当我检查 len(searchResult.Hits.Hits) 变量时,我得到 10。

当我选择少于 10 个实体时,我尝试了不同的查询并且效果很好。

query = elastic.NewBoolQuery()
ctx := context.Background()

query = query.Must(elastic.NewTermQuery("key0", "term"),
elastic.NewWildcardQuery("key1", "*term2*"),
elastic.NewWildcardQuery("key3", "*.*"),
elastic.NewRangeQuery("timestamp").From(fromTime).To(toTime),
)
searchResult, err = client.Search().Index("index").
Query(query).Pretty(true).Do(ctx)
fmt.Printf("TotalHits(): %v", searchResult.TotalHits()) //It gives me 482
fmt.Printf("length of the hits array: %v", len(searchResult.Hits.Hits)) //It gives 10
for _, hit := range searchResult.Hits.Hits {
var tweet Tweet
_ = json.Unmarshal(*hit.Source, &tweet)
fmt.Printf("entity: %s", tweet) //It prints 10 entity
}

我做错了什么? SearchResult 中是否有批处理或可能的解决方案?

最佳答案

您的问题中未指定,因此如果您使用的是不同的客户端库(例如官方客户端),请发表评论,但您似乎使用的是 github.com/olivere/elastic。基于该假设,您看到的是默认结果集大小 10。TotalHits 数字是与您的查询匹配的文档总数; Hits 数字是当前结果中返回的数量,您可以使用 Size 对其进行操作、排序来自大小记录为:

Size is the number of search hits to return. Defaults to 10.

关于elasticsearch - 为什么 searchResult.TotalHits() 与 len(searchResult.Hits.Hits) 不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54769677/

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