Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created February 9, 2012 06:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimchy/1777975 to your computer and use it in GitHub Desktop.
Save kimchy/1777975 to your computer and use it in GitHub Desktop.
curl 'http://localhost:9200/my_index/my_type/_search?analyze_wildcard=true&q=Ing%25e9nieur*'
curl 'http://localhost:9200/my_index/my_type/_search?analyze_wildcard=true&q=Ing%25e9n*'
curl localhost:9200/my_index/my_type/_search -d '{
"query" : {
"query_string" : {
"query" : "Ingénieur*",
"analyze_wildcard" : true
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment