1
我跟着文檔https://www.elastic.co/guide/en/elasticsearch/guide/current/multi-fields.html添加排序列爲名稱字段。不幸的是,它不工作elasticsearch排序意外的空返回
這些步驟如下:
- 附加索引映射
PUT /staff { "mappings": { "staff": { "properties": { "id": { "type": "string", "index": "not_analyzed" }, "name": { "type": "string", "fields": { "raw": { "type": "string", "index": "not_analyzed" } } } } } } }
- 添加文件
- 搜索爲name.raw
POST /staff/list { "id": 5, "name": "abc" }
POST /staff_change/_search { "sort": "name.raw" }
然而,在響應排序字段返回空
"_source": {
"id": 5,
"name": "abc"
},
"sort": [
null
]
}
我不知道它爲什麼不工作,我不能搜索相關的問題文檔相關此。是否有人遇到這個問題
提前感謝
啊哈,好去接謝謝:) –