文章目录
GET /index/type/_mapping
string
text
:支持分词keyword
:不分词byte
, short
, integer
, long
float
, double
boolean
date
PUT /lib //指定索引为lib
{
"mappings":{
"user":{ //指定索引类型为user
"properties":{
"name":{
"type":"text", //指定类型
"analyzer": "standard" //指定分词器
},
"age":{
"type":"integer"
},
"date":{
"type":"date"
},
"address":{
"type":"text",
"analyzer": "standard"
}
}
}
}
}