Created
March 10, 2011 18:14
-
-
Save monken/864574 to your computer and use it in GitHub Desktop.
This file contains 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
# this doesn't work | |
curl -XDELETE http://localhost:9200/cpan | |
curl -XPUT http://localhost:9200/cpan -d ' | |
{"analysis":{"analyzer":{"lowercase":{"filter":"lowercase","tokenizer":"keyword"}}}, | |
"mappings":{"twitter":{"properties":{"name":{"type":"string","analyzer":"lowercase"}}}}} | |
' | |
# while this does: | |
curl -XDELETE http://localhost:9200/cpan | |
curl -XPUT http://localhost:9200/cpan -d ' | |
{"analysis":{"analyzer":{"lowercase":{"filter":"lowercase","tokenizer":"keyword"}}}} | |
' | |
curl -XPUT http://localhost:9200/cpan/_mapping -d ' | |
{"twitter":{"properties":{"name":{"type":"string","analyzer":"lowercase"}}}} | |
' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment