作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在带有字段的 flex 搜索中有一个JSON记录
"streetName": "5 Street",
"name": ["Shivam Apartments"]
我尝试了以下查询,但如果在查询中添加streetName bool,则不会返回任何内容
{
"query": {
"bool": {
"must": [
{
"bool": {
"must": {
"match": {
"name": {
"query": "shivam apartments",
"minimum_should_match": "80%"
}
}
}
}
},
{
"bool": {
"must": {
"match": {
"streetName": {
"query": "5 street",
"minimum_should_match": "80%"
}
}
}
}
}
]
}
}
}
文档映射
{
"rabc_documents": {
"mappings": {
"properties": {
"name": {
"type": "text",
"analyzer": "autocomplete_analyzer",
"position_increment_gap": 0
},
"streetName": {
"type": "keyword"
}
}
}
}
}
最佳答案
基于E.S文档(Keywords in Elastic Search)
关于elasticsearch - Elasticsearch 中的邻近相关性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63445790/
我是一名优秀的程序员,十分优秀!