Skip to content

Instantly share code, notes, and snippets.

@lpradovera
Created November 15, 2011 17:27
Show Gist options
  • Save lpradovera/1367697 to your computer and use it in GitHub Desktop.
Save lpradovera/1367697 to your computer and use it in GitHub Desktop.
{
"fields": ["title", "des_com", "des_reg"],
"from": 0,
"size": 15,
"sort": [{
"_geo_distance": {
"geo_loc": {
"lat": 45.5786,
"lon": 8.0365
},
"order": "asc",
"unit": "km"
}
}],
"query": {
"filtered": {
"query": {
"bool": {
"must": [{
"bool": {
"should": [{
"text": {
"title": {
"boost": 2,
"query": "cuoco",
"operator": "and"
}
}
}, {
"text": {
"description": {
"boost": 1,
"query": "cuoco",
"operator": "and"
}
}
}]
}
}]
}
},
"filter": {
"and": [{
"not": {
"filter": {
"term": {
"status": 0
}
}
}
}, {
"geo_distance": {
"distance": "150",
"geo_loc": {
"lat": 45.5786,
"lon": 8.0365
}
}
}]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment