Skip to content

Instantly share code, notes, and snippets.

@phpnode
Created July 1, 2011 18:46
Show Gist options
  • Save phpnode/1059156 to your computer and use it in GitHub Desktop.
Save phpnode/1059156 to your computer and use it in GitHub Desktop.
{
"fields": [
"id",
"name",
"title",
"description",
"url",
"domain"
],
"query": {
"custom_score": {
"params": {
"tags": [
"twitter"
]
},
"query": {
"filtered": {
"filter": {
"terms": {
"tags": [
"twitter"
]
}
},
"query": {
"match_all": {}
}
}
},
"script": "tot = _score; foreach(tag : tags) { tot += doc[tags][tag].value; } return tot;"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment