博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
elasticsearch 前缀匹配
阅读量:6161 次
发布时间:2019-06-21

本文共 1408 字,大约阅读时间需要 4 分钟。

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"

        }

    }

}'

本文转自whk66668888 51CTO博客,原文链接:http://blog.51cto.com/12597095/1903495

转载地址:http://pjrfa.baihongyu.com/

你可能感兴趣的文章
Eclipsed的SVN插件不能识别之前工作空间的项目
查看>>
Linux 查看iptables状态-重启
查看>>
amazeui学习笔记一(开始使用2)--布局示例layouts
查看>>
c#中lock的使用(用于预约超出限额的流程)
查看>>
ODI基于源表时间戳字段获取增量数据
查看>>
并发容器之CopyOnWriteArrayList(转载)
查看>>
什么是AAC音频格式 AAC-LC 和 AAC-HE的区别是什么
查看>>
原创:goldengate从11.2升级到12.1.2
查看>>
Quartz
查看>>
正则表达式的语法规则
查看>>
C#一个关于委托和事件通俗易懂的例子
查看>>
类似于SVN的文档内容差异对比工具winmerge
查看>>
Cause: java.sql.SQLException: The user specified as a definer ('root'@'%') does not exist
查看>>
quratz线程
查看>>
execnet: rapid multi-Python deployment
查看>>
windows修改3389端口
查看>>
关于JavaScript词法
查看>>
FreeSwitch中的会议功能(4)
查看>>
MySQL中创建用户分配权限(到指定数据库或者指定数据库表中)
查看>>
AutoReleasePool 和 ARC 以及Garbage Collection
查看>>