elasticsearch 近義詞 遠程配置


之前寫的一遍文章,被刪除了,如今補回來。java


首先安裝插件 dynamic-synonym,curl


curl -XPOST "http://localhost:9200/*/" -d '{
        "analysis": {
            "analyzer":{
                    "mysynonym":{
                        "type": "custom",
                        "tokenizer":"ik_max_word",
                        "filter":[
                            "remote_synonym"
                        ]
                    }
                },
                "filter":{
                    "remote_synonym":{
                        "expand": true,
                        "ignore_case": true,
                        "type": "dynamic_synonym",
                        "synonyms_path" :  "http://*/word/getAllSynonymToTokenStream",
                        "interval": 60
                    }
                }
        }
}';

上面的url, 返回一組列表,格式以下(逗號分隔)ide

西紅柿,番茄url

相關文章
相關標籤/搜索