elasticsearch 近义词-远程配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticsearch 近义词-远程配置相关的知识,希望对你有一定的参考价值。
curl -XPOST ‘http://localhost:9200/sy4‘ -d ‘{
"analysis": {
"analyzer":{
"mysynonym":{
"type": "custom",
"tokenizer":"ik_smart",
"filter":[
"remote_synonym"
]
}
},
"filter":{
"remote_synonym":{
"expand": true,
"ignore_case": true,
"type": "dynamic_synonym",
"synonyms_path" : "http://172.17.4.40:6080/word/getAllSynonymToTokenStream",
"interval": 60
}
}
}
}‘
以上是关于elasticsearch 近义词-远程配置的主要内容,如果未能解决你的问题,请参考以下文章