Skip to content

Instantly share code, notes, and snippets.

@Vineeth-Mohan
Created April 7, 2013 03:24
Show Gist options
  • Save Vineeth-Mohan/5328791 to your computer and use it in GitHub Desktop.
Save Vineeth-Mohan/5328791 to your computer and use it in GitHub Desktop.
curl -X PUT "http://$hostname:9200/index_name" -d '{
"index" : {
"number_of_shards" : 2,
"number_of_replicas" : 1 ,
"analysis":{
"analyzer":{
"html" : {
"type" : "custom",
"tokenizer" : "standard",
"filter" : ["lowercase" , "stop"],
"char_filter" : ["html_strip"]
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment