gpt4 book ai didi

elasticsearch - Elasticsearch hits.total与OR不同

转载 作者:行者123 更新时间:2023-12-03 01:37:53 32 4
gpt4 key购买 nike

当我使用以下搜索(/posts/_search)时,我的hits.total为1400:

{"query": {"query_string": {"query": "Bitcoin"}}}

当我使用以下搜索( /posts/_search)时,hits.total是500:
{"query": {"query_string": {"query": "Ethereum"}}}

当我在搜索中使用OR时, hits.total是1400,我希望它是1900。
{"query": {"query_string": {"query": "(Ethereum) OR (Bitcoin)"}}}

当我使用“OR”时,为什么hits.total总数不同?我正在使用hits.total作为计数器来显示,并且数字应该相同,对吗?

我对ElasticSearch还是很陌生,希望有人可以指出正确的方向。谢谢!

最佳答案

最有可能看起来像一些文档,其中** _ all 都有两个术语**,即比特币和以太坊,因此,当您独立运行查询时,会选择相同的文档,但是当您运行时,仅包含这些通用文档一旦。

也许这个维恩图可以更好地解释

enter image description here

A U B =(7 + 2 + 5)+(8 + 1 + 2 + 5)-(2 + 5)= 23

A + B =(7 + 2 + 5)+(8 + 1 + 2 + 5)= 30

如果您确定这些字段永远不能有多个值,请尝试在查询中添加“ default_field ”并运行结果。如果您不传递“ default_field ”,则默认为index.query.default_field 索引设置,而则默认为_all

{
"query": {
"query_string": {
"default_field": "CRYPTOCURRENCY_TYPE",
"query": "as"
}
}
}

您可以在这里找到更多详细信息: https://www.elastic.co/guide/en/elasticsearch/reference/5.5/query-dsl-query-string-query.html

关于elasticsearch - Elasticsearch hits.total与OR不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50838662/

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