Skip to content

Instantly share code, notes, and snippets.

@lxneng
Created September 5, 2016 11:21
Show Gist options
  • Save lxneng/93b82e830d8a9b6b35322db39810edb6 to your computer and use it in GitHub Desktop.
Save lxneng/93b82e830d8a9b6b35322db39810edb6 to your computer and use it in GitHub Desktop.
function_score in es
{
"query": {
"function_score": {
"functions": [
{
"script_score" : {
"script" : "_score * log10(max(doc['like_count'].value, 1)) + ((doc['created_at'].value/1000) - 1412092800)/604800.0"
}
}
],
"query": {
"multi_match": {
"query": "java",
"fields": ["title^3", "summary", "body"]
}
},
"boost_mode": "replace"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment