Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created August 7, 2017 19:31
Show Gist options
  • Select an option

  • Save selcukusta/d4f0960230da4ecacf4e5b09538a64ce to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/d4f0960230da4ecacf4e5b09538a64ce to your computer and use it in GitHub Desktop.
curl -X POST \
http://localhost:9200/career_sample_index/_search \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"query": {
"function_score": {
"query": {
"match_phrase": {
"Position": "Software Developer"
}
},
"functions": [
{
"gauss": {
"Location": {
"origin": "41.170682, 28.538730",
"offset": "1km",
"scale": "500m",
"decay": 0.33
}
},
"weight": 1.2
},
{
"filter": {
"term": {
"Servicing": true
}
},
"weight": 2
},
{
"filter": {
"term": {
"Servicing": false
}
},
"weight": 1
}
],
"score_mode": "sum"
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment