如题,在C#/.NET/.NET 5/.NET Core的应用程序编程开发中,正在使用NEST/Elasticsearch.Net访问Elasticsearch 7.x或者以上的版本。现需要检测Elasticsearch数据库中是否存在某个指定的索引名,应该如何实现呢?
Rector
2021-04-01 提问
在Elasticsearch 7对应的NEST或者Elasticsearch.Net这两个类库中,实现了根据指定检测某个索引是否存在的同步方法client.Indices.Exists(index)以及异步方法client.Indices.Exists(index),如下:
client.Indices.Exists(index)
此外,Indices还提供了一些判断其他Exists的方法,如:
Indices
Exists
2021-04-01 回答
码龄: 3099天
专注.NET/.NET Core