标签: elasticsearch
在使用Elasticsearch进行搜索时,我可以使用highlighting查看哪些单词用于返回搜索,但如何获取这些单词的列表?
示例:如果我搜索a*e,我可能会得到同时包含ale和apple的结果,并且会在高亮显示为...some text <strong>ale</strong>; some text <strong>apple</strong> }
a*e
ale
apple
...some text <strong>ale</strong>; some text <strong>apple</strong>
如何才能获得与搜索匹配的字词?例如,["ale", "apple"]
["ale", "apple"]