码迷,mamicode.com
首页 > 移动开发 > 详细

手动建立mapping以及增加属性

时间:2018-03-08 00:15:01      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:article   analyzer   text   get   art   nal   string   zed   map   

只能创建index时手动建立mapping,或者新增field mapping,但是不能update field mapping

1、手动建立mapping
PUT /website
{
  "mappings": {
    "article": {
      "properties": {
        "author_id": {
          "type": "long"
        },
        "title": {
          "type": "text",
          "analyzer": "english"
        },
        "content": {
          "type": "text"
        },
        "post_date": {
          "type": "date"
        },
        "publisher_id": {
          "type": "text",
          "index": "not_analyzed"
        }
      }
    }
  }
}

2、增加mapping属性
PUT /website/_mapping/article
{
  "properties" : {
    "new_field" : {
      "type" : "string",
      "index": "not_analyzed"
    }
  }
}

3、测试mapping
GET /website/_analyze
{
  "field": "content",
  "text": "my-dogs"
}

手动建立mapping以及增加属性

标签:article   analyzer   text   get   art   nal   string   zed   map   

原文地址:https://www.cnblogs.com/qinjf/p/8525468.html

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