作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我发现以下示例:
my_query = 'spaghetti'
es.search(index="test", doc_type="articles", body={"query": {"match": {"content": my_query}}})
content
怎么办?与之类似,返回包含
my_query
的任何内容
最佳答案
这里有一个非常清楚的解释:
https://www.elastic.co/guide/en/elasticsearch/reference/6.4/mapping-all-field.html
_all在6.0+版本中已弃用
如果必须使用_all
,则查询将如下所示:
es.search(index="test", doc_type="articles", body={"query": {"match": {"_all": my_query}}})
query_string
与通配符一起使用,而不能将
match
与通配符一起使用
es.search(index="test", doc_type="articles", body={"query": {"query_string": {"query": my_query}}})
关于python - 如何在Elastic Search中查询索引以查找任何匹配项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55915259/
我是一名优秀的程序员,十分优秀!