Skip to content

Instantly share code, notes, and snippets.

@jakeemerson
Created March 30, 2015 20:50
Show Gist options
  • Save jakeemerson/dd8b91e752fe70206793 to your computer and use it in GitHub Desktop.
Save jakeemerson/dd8b91e752fe70206793 to your computer and use it in GitHub Desktop.
elasticsearch common search query example
curl -X GET "http://elastic-04:9200/content/_search/?size=10" -d'
{
"query" : {
"common": {
"post_content": {
"query": "waterfront concert series",
"cutoff_frequency": 0.001,
"low_freq_operator" : "and"
}
}
}
}' | python -mjson.tool
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment