作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我使用以下搜索(/posts/_search
)时,我的hits.total为1400:
{"query": {"query_string": {"query": "Bitcoin"}}}
/posts/_search
)时,hits.total是500:
{"query": {"query_string": {"query": "Ethereum"}}}
hits.total
是1400,我希望它是1900。
{"query": {"query_string": {"query": "(Ethereum) OR (Bitcoin)"}}}
最佳答案
最有可能看起来像一些文档,其中** _ all 都有两个术语**,即比特币和以太坊,因此,当您独立运行查询时,会选择相同的文档,但是当您运行时,仅包含这些通用文档一旦。
也许这个维恩图可以更好地解释
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"
}
}
}
关于elasticsearch - Elasticsearch hits.total与OR不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50838662/
我是一名优秀的程序员,十分优秀!