Created
April 30, 2014 12:52
-
-
Save gonfva/473494a11e4614a60159 to your computer and use it in GitHub Desktop.
Command to change the default analyzer for an index
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -XPUT http://localhost:9200/test -d' | |
| { | |
| "index" : { | |
| "analysis" : { | |
| "analyzer" : { | |
| "default" : { | |
| "char_filter" : [ | |
| "html_strip" | |
| ], | |
| "tokenizer" : "standard" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment