Skip to content

Instantly share code, notes, and snippets.

@marklin-latte
Last active August 29, 2015 14:09
Show Gist options
  • Save marklin-latte/0710a9bbd1b3abaaaa4c to your computer and use it in GitHub Desktop.
Save marklin-latte/0710a9bbd1b3abaaaa4c to your computer and use it in GitHub Desktop.
ElasticSearch-Attachment highlight search
//Uri
GET /test/person/_search
{
"fields": [],
"query": {
"match": {
"file": "天氣"
}
},
"highlight": {
"fields": {
"file": {
}
}
}
}
//Result
"hits": {
"total": 11,
"max_score": 0.40382302,
"hits": [
{
"_index": "test1",
"_type": "attachment",
"_id": "5f2716fc-e6b6-46c0-acd9-9127e0b64f09",
"_score": 0.40382302,
"highlight": {
"file": [
"你天天<em>氣</em>好 "
]
}
},
{
"_index": "test1",
"_type": "attachment",
"_id": "2faa9b1e-cc3d-4214-b90d-e9fef003332d",
"_score": 0.25268972,
"highlight": {
"file": [
"你天天<em>氣</em>好啊~AA "
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment