在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
- 节点
- 等...