码迷,mamicode.com
首页 > 其他好文 > 详细

elasticsearch 同义词配置

时间:2017-04-13 15:46:12      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:elasticsearch 同义词配置

在elasticsearch-2.3.1/config目录下面,存放synonyms.txt


curl -XPOST ‘http://localhost:9200/sy‘ -d ‘{

        "analysis": {

            "analyzer":{

                    "mysynonym":{

   "type": "custom",

                        "tokenizer":"ik_smart",

                        "filter":[

                            "local_synonym"

                        ]

                    }

                },

                "filter":{

                    "local_synonym":{

                        "expand":true,

                        "ignore_case":true,

                        "type":"synonym",

                        "synonyms_path":"synonym.txt"

                    }

                }

        }


}‘




curl -XPOST ‘http://localhost:9200/sy/sy/_mapping‘ -d ‘{

        "sy":{

            "_all":{

                "search_analyzer":"ik_smart",

                "analyzer":"mysynonym"

            },

            "properties":{

                "name":{

                    "type":"string"

                },

                "title":{

                    "type":"string"

                },

"number":{

                    "type": "long"

                }

            }

        }

    }

}‘


curl -XPOST http://127.0.0.1:9200/sy/sy/1?pretty  -d‘

{"name":"番茄" , "title" : "FQtitle" , "number" : 10000}


curl -XPOST http://127.0.0.1:9200/sy/sy/2?pretty  -d‘

{"name":"西红柿" , "title" : "XHStitle" , "number" : 20000}


curl -XPOST http://127.0.0.1:9200/sy/sy/3?pretty  -d‘

{"name":"圣女果" , "title" : "SVGtitle" , "number" : 30000}



curl -XGET ‘http://10.2.19.172:9200/sy/sy/_search?pretty‘ -d ‘{

  "from" : 0,

  "size" : 2,

    "query": {

        "bool" : {

            "must" : {

                "query_string" : {

                    "query" : "圣女果"

                }

            }

        }

    }

}‘


elasticsearch 同义词配置

标签:elasticsearch 同义词配置

原文地址:http://12597095.blog.51cto.com/12587095/1915508

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!