[DOCS] Added highlighting to the phrase suggester

This commit is contained in:
Clinton Gormley 2013-09-04 20:24:37 +02:00
parent 53ad7330fc
commit 5b60506b2e
1 changed files with 15 additions and 1 deletions

View File

@ -37,7 +37,11 @@ curl -XPOST 'localhost:9200/_search' -d {
"field" : "body",
"suggest_mode" : "always",
"min_word_len" : 1
} ]
} ],
"highlight": {
"pre_tag": "<em>",
"post_tag": "</em>"
}
}
}
}
@ -73,9 +77,11 @@ can contain misspellings (See parameter descriptions below).
"length" : 17,
"options" : [ {
"text" : "xorr the god jewel",
"highlighted": "<em>xorr</em> the <em>god</em> jewel",
"score" : 0.17877324
}, {
"text" : "xor the god jewel",
"highlighted": "xor the <em>god</em> jewel",
"score" : 0.14231323
} ]
} ]
@ -144,6 +150,14 @@ can contain misspellings (See parameter descriptions below).
`text`::
Sets the text / query to provide suggestions for.
`highlight`::
Sets up suggestion highlighting. If not provided then
no `highlighted` field is returned. If provided must
contain exactly `pre_tag` and `post_tag` which are
wrapped around the changed tokens. If multiple tokens
in a row are changed the entire phrase of changed tokens
is wrapped rather than each token.
==== Smoothing Models
The `phrase` suggester supports multiple smoothing models to balance