我正在尝试在弹性搜索中实现拼音插件(https://github.com/elasticsearch/elasticsearch-analysis-phonetic)。
要实现此插件,我已经参考了以下链接 http://blog.jessitron.com/2012/04/configuring-soundex-in-elasticsearch.html
通过以下步骤进行测试:
curl localhost:9200 / _shutdown -XPOST
curl localhost:9200 / anyindexname -XPUT { “OK”:真, “已确认”:真}
卷曲“localhost:9200 / anyindexname / _analyze?analyzer = search_soundex& pretty = true”-d'串口'
它抛出了一个错误,例如
{ “error”:“ElasticSearchIllegalArgumentException [找不到分析器[search_soundex]]”, “地位”:400 }
伙计们,我需要你的帮助来解决这个问题......