Skip to content

Instantly share code, notes, and snippets.

@babadofar
Last active August 29, 2015 14:03
Show Gist options
  • Save babadofar/2264d3b306be568bf0c0 to your computer and use it in GitHub Desktop.
Save babadofar/2264d3b306be568bf0c0 to your computer and use it in GitHub Desktop.
Elasticsearch function_score demo
curl -XPOST "http://localhost:9200/seasonalfoods/_search" -d'
{ "explain":true,
"query": {
"terms": {
"ingredients": [
"jordbær",
"bringebær",
"rips",
"solbær",
"stikkelsbær",
"pærer",
"plommer",
"gulrøtter",
"poteter",
"tomater",
"sukkererter",
"reddiker",
"timian",
"gressløk",
"rosmarin",
"mynte",
"basilikum"
]
}
},
"highlight": {
"pre_tags": [
""
],
"post_tags": [
""
],
"fields": {
"ingredients": {}
}
}
}'
{ "explain":true,
"query": {
"terms": {
"ingredients": [
"jordbær",
"bringebær",
"rips",
"solbær",
"stikkelsbær",
"pærer",
"plommer",
"gulrøtter",
"poteter",
"tomater",
"sukkererter",
"reddiker",
"timian",
"gressløk",
"rosmarin",
"mynte",
"basilikum"
]
}
},
"highlight": {
"pre_tags": [
""
],
"post_tags": [
""
],
"fields": {
"ingredients": {}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment