1. 程式人生 > >第5講 5.3 ElasticSearch-head操作表結構

第5講 5.3 ElasticSearch-head操作表結構

1,建立表結構。使用PUT請求
{
  "mapping": {
    "first": {
      "properties": {
        "name": {
          "type": "keyword"
        },
        "birthday": {
          "type": "date"
        },
        "age": {
          "type": "integer"
        },
        "desc": {
          "type": "text"
        }
      }
    }
  }
}
5.3_ElasticSearch-head操作表結構


2,給student索引,以及first型別新增內容,使用POST 請求,索引“1”可以加,也可以不新增,如果不新增,就隨機生成 一個,
5.3_ElasticSearch-head操作表結構
3. 檢視索引下的對那個的結構:需要指定索引名稱,get方式
5.3_ElasticSearch-head操作表結構
4,索引下的型別下新增欄位,需要 _mapping 對映,first型別指定
5.3_ElasticSearch-head操作表結構
5.關於修改欄位和 刪除欄位,目前由於版本變化,還沒有測通,如果非要修改的話,可以先備份一下,人後在重新建立索引,再導進去,