作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我进行了很多搜索,但案件一无所获。
我有关于 flex 搜索的帖子。我想得到的帖子
query: {
bool: {
should: [
{match: {"author_id" : 2}},
{match: {"post_id" : 2}}
],
filter: [
{range: {"created": {gte : startTime , lte:targetTime}}},
]
}
}
最佳答案
您快到了,您只缺少一件事,即指定至少一个should
子句应该匹配,您可以这样做:
query: {
bool: {
minimum_should_match: 1, <-- add this line
should: [
{match: {"author_id" : 2}},
{match: {"post_id" : 2}}
],
filter: [
{range: {"created": {gte : startTime , lte:targetTime}}},
]
}
}
关于elasticsearch - 使用范围elasticsearch一起查询“AND”和“OR”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50036530/
我是一名优秀的程序员,十分优秀!