Created
September 5, 2016 11:21
-
-
Save lxneng/93b82e830d8a9b6b35322db39810edb6 to your computer and use it in GitHub Desktop.
function_score in es
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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