Skip to content

Instantly share code, notes, and snippets.

@robinsound
Last active April 17, 2017 17:14
Show Gist options
  • Save robinsound/7a1a95a54d99de77600f3effc29d3a24 to your computer and use it in GitHub Desktop.
Save robinsound/7a1a95a54d99de77600f3effc29d3a24 to your computer and use it in GitHub Desktop.
// Query
query := elastic.NewQueryStringQuery("6888*")
hl := elastic.NewHighlight()
hl = hl.Fields(elastic.NewHighlighterField("*"))
hl = hl.PreTags("<span>").PostTags("</span>")
result, err := client.Search().
Index(indexname).
Highlight(hl).
Query(query).
Do(r.ctx)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment