:::tips 倒排索引结构虽然不复杂,但是索引库一旦创建,就无法再修改原有的Mapping,只能添加新的字段到Mapping中,因为添加新字段不会对倒排索引产生影响

    基本语法:

    • 请求方式:PUT
    • 请求路径:/索引库名/_mapping
    • 请求参数:字段和映射 :::
      1. PUT /索引库名/_mapping
      2. {
      3. "properties": {
      4. "字段名":{
      5. "type": "integer"
      6. }
      7. }
      8. }