您的位置:首页 > 其它

ES权威指南[官方文档学习笔记]-15 highlighting our searches

2014-05-13 00:00 501 查看
es:http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/highlighting-intro.html

下一篇:http://my.oschina.net/qiangzigege/blog/264111

内容:

高亮选择结果

增加一个高亮参数:
GET /megacorp/employee/_search
{
"query" : {
"match_phrase" : {
"about" : "rock climbing"
}
},
"highlight": {
"fields" : {
"about" : {}
}
}
}

{
...
"hits": {
"total":      1,
"max_score":  0.23013961,
"hits": [
{
...
"_score":         0.23013961,
"_source": {
"first_name":  "John",
"last_name":   "Smith",
"age":         25,
"about":       "I love to go rock climbing",
"interests": [ "sports", "music" ]
},
"highlight": {
"about": [
"I love to go <em>rock</em> <em>climbing</em>"
]
}
}
]
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  elasticsearch