Skip to content

Instantly share code, notes, and snippets.

@pastak
Created March 19, 2015 14:49
Show Gist options
  • Save pastak/ecdd90e7951de52c1e92 to your computer and use it in GitHub Desktop.
Save pastak/ecdd90e7951de52c1e92 to your computer and use it in GitHub Desktop.
curl -XPUT 'http://localhost:9200/kuromoji_sample/' -d'
{
"settings": {
"index":{
"analysis":{
"tokenizer" : {
"kuromoji_user_dict" : {
"type" : "kuromoji_tokenizer",
"mode" : "extended",
"discard_punctuation" : "false"
}
},
"analyzer" : {
"my_analyzer" : {
"type" : "custom",
"tokenizer" : "kuromoji_user_dict"
}
}
}
}
}
}
'
@johtani
Copy link

johtani commented Mar 20, 2015

curl -XGET "http://localhost:9200/_cat/plugins"

これを実行してみてもらえますか?
プラグインがちゃんと入ってない気がします。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment