elasticsearch实现搜索的快速自动补全功能

给mapping添加completion类型的字段,completion字段中保存的是一个个的字符串集合,搜索时按照给定的词条进行匹配。

1.创建索引

PUT /test
{
  "mappings" : {
    "properties":{
      "suggestion":{
        "type":"completion",
        "analyzer":"ik_max_word"
      }
    }
  }
}

2.填入数据

post /test/_doc
{
  "suggestion":["中间"]
}

post /test/_doc
{
  "suggestion":["中国大陆"]
}

post /test/_doc
{
  "suggestion":["中国台湾"]
}

3.查询

GET /test/_search
{
  "suggest": {
    "testSuggest": {
      "text": "中",
      "completion": {
        "field": "suggestion",
        "skip_duplicates":true,
        "size":10
      }
    }
  }
}

4.结果

在suggest字段的options中会返回补全的text,后端拿到该数据后返回给前端即可

"suggest" : {
    "testSuggest" : [
      {
        "text" : "中",
        "offset" : 0,
        "length" : 1,
        "options" : [
          {
            "text" : "中国台湾",
            "_index" : "test",
            "_type" : "_doc",
            "_id" : "FlKziogBKMqiB156c3Do",
            "_score" : 1.0,
            "_source" : {
              "suggestion" : [
                "中国台湾"
              ]
            }
          },
          {
            "text" : "中国大陆",
            "_index" : "test",
            "_type" : "_doc",
            "_id" : "FVKziogBKMqiB156a3Di",
            "_score" : 1.0,
            "_source" : {
              "suggestion" : [
                "中国大陆"
              ]
            }
          },
          {
            "text" : "中间",
            "_index" : "test",
            "_type" : "_doc",
            "_id" : "FFKziogBKMqiB156ZHCC",
            "_score" : 1.0,
            "_source" : {
              "suggestion" : [
                "中间"
              ]
            }
          }
        ]
      }
    ]
  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值