删除文档编辑

最后,您可以通过指定文档完整的 /索引/_doc_/ID 路径来删除文档

$params = [
    'index' => 'my_index',
    'id'    => 'my_id'
];

// Delete doc at /my_index/_doc_/my_id
$response = $client->delete($params);