Skip to content

Instantly share code, notes, and snippets.

@karussell
Created July 4, 2011 13:16
Show Gist options
  • Select an option

  • Save karussell/1063325 to your computer and use it in GitHub Desktop.

Select an option

Save karussell/1063325 to your computer and use it in GitHub Desktop.
boosting certain values
{
"query":{
"bool":{
"must":[{
"query_string":{
"default_field":"title",
"query":"japan"
}
}
],
"should":[{
"match_all":{}
},
{
"term":{
"lang":{
"value":"de",
"boost":10
}
}
},
{
"term":{
"lang":{
"value":"en",
"boost":2
}
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment