Skip to content

Instantly share code, notes, and snippets.

@mukulgupta2507
Created July 13, 2014 14:57
Show Gist options
  • Save mukulgupta2507/22655b30d235c2e44339 to your computer and use it in GitHub Desktop.
Save mukulgupta2507/22655b30d235c2e44339 to your computer and use it in GitHub Desktop.
Query_string for using full text search in autocompleter
curl -XGET 'localhost:9200/booksindex/booksidx/_search?pretty=true' -d '{
"query": {
"query_string": {
"query": "mastering by marek",
"fields": [
"title.title_shingles^2",
"author.author_shingles"
]
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment