目录: 一、针对这次装B 的解释
四、 查询
三、mapping
1. 索引的mapping记录了对字段的描述,是否分词,是否存储等----没有细细的研究,只是简单的区分了field的不同产生的不同的mapping
2. 创建mapping,直接指定mapping,url中声明创建的索引的
{
"person":{
"_all":{"enabled":true},
"properties":{
"name":{
"type":"object",
"dynamic":false,
"properties":{
"first":{"type":"string","store":true,"include_in_all":false},
"last":{"type":"string","index":"not_analyzed"}
}
},
"address":{
"type":"object",
"include_in_all":false
}
}
}
}
时间: 2024-10-06 21:25:53