-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Highlight
shiyuan edited this page Jun 21, 2017
·
2 revisions
Read about highlights here
On 1.x version it will only work on queries so make sure you order by _score
- put the field that you want to highlight on an hint
/*! HIGHLIGHT(fieldName,option1 : value1, option2 : value2)*/
- Have more than one field? just add more hints
select /*! HIGHLIGHT(field1,pre_tags : ['<b>'], post_tags : ['</b>'] ) */
/*! HIGHLIGHT(field2,pre_tags : ['<b>'], post_tags : ['</b>'] ) */ * from myIndex
- The options are:
- boundary_chars
- boundary_max_scan
- force_source
- fragmenter
- fragment_offset
- fragment_size
- highlight_filter
- matched_fields
- no_match_size
- num_of_fragments
- order
- phrase_limit
- post_tage
- pre_tags
- require_field_match