elasticsearch - 索引API操作 索引新增 PUT /index_name PUT /book # response { "acknowledged": true, "shards_acknowledged": true, "index": "book" } 索引删除 DELETE /index_name DELETE /book # response { "acknowledged": true }