Elasticsearch 或 Elastic Cloud 能否返回匹配位置的响应?
示例请求
{ "query": { "match": { "body": "apple" } } }
理想的反应
{
"_source": {
"body": "The red apple is a good apple."
},
"matched_position": [
{
"start": 8,
"end": 12,
},
{
"start": 24,
"end": 28,
}
]
}