Skip to content

Instantly share code, notes, and snippets.

@penguinco
Created June 18, 2013 09:39
Show Gist options
  • Save penguinco/5804036 to your computer and use it in GitHub Desktop.
Save penguinco/5804036 to your computer and use it in GitHub Desktop.
curl -XDELETE 'localhost:9200/test/'
curl -XPUT 'localhost:9200/test/' -d'
{
"index":{
"analysis":{
"tokenizer" : {
"kuromoji" : {
"type":"kuromoji_tokenizer",
"mode":"search"
}
},
"analyzer" : {
"default" : {
"type" : "custom",
"tokenizer" : "kuromoji_tokenizer"
}
}
}
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment