Elasticsearch.net版本7-如何检查索引是否存在



在elasticsearch.net 6.x中,可以使用IElasticClient方法检查索引是否存在:

    bool exists = elasticClient.IndexExists("my-index-name").Exists;

方法在Elasticsearch.net版本7中删除。

在elasticsearch.net版本7中,与索引操作有关的方法已移至 IndicesNamespace,因此IndexExists方法已移动到:

    bool exists = elasticClient.Indices.Exists("my-index-name").Exists;

同样,不同的方法已移至:

  • cat
  • 群集
  • 图形
  • sql
  • 节点
  • 等...

相关内容

  • 没有找到相关文章

最新更新