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

elasticsearch 前缀匹配

时间:2017-03-06 09:58:53      阅读:931      评论:0      收藏:0      [点我收藏+]

标签:elasticsearch 前缀匹配

curl -XDELETE ‘http://localhost:9200/ess/‘;

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

        "analysis": {

            "filter": {

                "autocomplete_filter": { 

                    "type":     "edge_ngram",

                    "min_gram": 1,

                    "max_gram": 20,

"token_chars": ["whitespace"]

                }

            },

            "analyzer": {

                "autocomplete": {

                    "type":      "custom",

                    "tokenizer": "whitespace",

                    "filter": [

                        "lowercase",

                        "autocomplete_filter" 

                    ]

                },

"postsearch": { 

                   "tokenizer": "keyword",

  "filter": [

                        "lowercase"

                    ]

                }

            }

        }


}‘




curl -XPOST ‘http://localhost:9200/ess/ess/_mapping‘ -d‘

{

    "ess": {

      "properties": {

        "id": {

          "type" : "long"

        },

        "fullname": {

          "type" : "string"

        },

        "allname": {

          "type" : "string",

          "analyzer":  "autocomplete", 

          "search_analyzer": "postsearch"

        }

        

      }

      }

}‘





curl ‘localhost:9200/ess/_analyze?pretty=1&analyzer=autocomplete‘ -d ‘zs zhangsan zsan zhangs 张三 张s zns‘


curl ‘localhost:9200/ess/_analyze?pretty=1&analyzer=postsearch‘ -d ‘Z‘


curl -XPOST http://localhost:9200/ess/ess/1 -d‘

{"fullname":"张三" , "allname" : "zs zhangsan zsan zhangs 张三 张s zns" }


curl -XPOST http://localhost:9200/ess/ess/2 -d‘

{"fullname":"张三风" , "allname" : "zsf zhangsanfeng zsanfeng zhangsf 张三 三风 张sf znsf" }


curl -XPOST http://localhost:9200/ess/ess/3 -d‘

{"fullname":"李三风" , "allname" : "lsf lisanfeng lsanfeng lsf 李三 三风 李s lsf" }



curl -XGET ‘http://localhost:9200/ess/_search?pretty‘ -d ‘{

   "query": {

        "match": {

            "allname": "张S"

        }

    }

}‘




本文出自 “大海” 博客,请务必保留此出处http://12597095.blog.51cto.com/12587095/1903495

elasticsearch 前缀匹配

标签:elasticsearch 前缀匹配

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

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