关键词索引表

{
  // 设置部分
  "settings": {
    "refresh_interval": "1s",                   // 刷新间隔为1秒
    "max_result_window": 65536,                    // 最大结果窗口为65536
    "number_of_replicas": 1,                    // 副本数量为1
    "number_of_shards": 1,                      // 分片数量为1
    "analysis": {                                // 分析器配置
      "analyzer": {                                // 分析器设置
        "ik_max_word": {                         // IK中文分词器设置
          "type": "custom",                        // 类型为自定义
          "tokenizer": "ik_max_word"                 // 使用IK中文分词器-最细粒度切分
        }
      }
    }
  },
  "mappings": {
    "properties": {
      "id": {                               // 通用ID
        "type": "keyword"
      },
      "name": {                             // 通用名称
        "type": "text"
      },
      "type": {                             // 类型 1商品,2类目,3活动...
        "type": "long"
      },
      "url": {                               // 跳转URL
        "type": "keyword"
      },
      "extend": {                            // 延申字段
        "type": "text"
      }
    }
  },
  "aliases": {
    "keyword_lexicon_index": {}                     // 对外设置别名为keyword_lexicon_index
  }
}