:::tips 倒排索引结构虽然不复杂,但是索引库一旦创建,就无法再修改原有的Mapping,只能添加新的字段到Mapping中,因为添加新字段不会对倒排索引产生影响 基本语法: 请求方式:PUT请求路径:/索引库名/_mapping请求参数:字段和映射 :::PUT /索引库名/_mapping{ "properties": { "字段名":{ "type": "integer" } }}