es记录


GET hh_index

PUT person
GET person
GET person/_mapping 
PUT person/_mapping
{
  "properties":{
    "name":{
      "type":"keyword"
    },
    "age":{
      "type":"integer"
    }
  }
}
PUT person/_mapping
{
  "properties":{
    "address":{
      "type":"text"
    }
  }
}
PUT person/_doc/2
{
  "name":"whh22",
  "age":12,
  "address":"北京朝阳明天生活馆"
}
GET person/_doc/1
POST person/_doc
{
  "name":"whh2",
  "age":22,
  "address":"北京朝阳明天生活馆"
}
GET person/_doc/gv-O74AB3X8xD4jQkisP
GET person/_search
DELETE person/_doc/gv-O74AB3X8xD4jQkisP
PUT wh
{
  "mappings": {
    "properties": {
      "name":{
        "type": "keyword"
      }
    }
  }
}
GET wh

 

 ik分词器