We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
哪位大神知晓不同索引指定不同的IK词典进行分词呢?
The text was updated successfully, but these errors were encountered:
你在新建索引的时候能够指定字段的分词器。 PUT /test { "mappings": { "properties": { "name": { "type": "text", "index":true, "analyzer":"ik_max_word" }, "info": { "type": "text", "index":true, "analyzer":"standard" }, "ts": { "type": "date" } } } }
PUT /test { "mappings": { "properties": { "name": { "type": "text", "index":true, "analyzer":"ik_max_word" }, "info": { "type": "text", "index":true, "analyzer":"standard" }, "ts": { "type": "date" } } } }
Sorry, something went wrong.
上传多个IK词典,如何针对不同的字段指定不同的词典文件名,这块如何配置呢
你这个问题好像有人回答过 我目前还没有接触过这种场景 你可以参考一下大佬们的 777 431
No branches or pull requests
哪位大神知晓不同索引指定不同的IK词典进行分词呢?
The text was updated successfully, but these errors were encountered: