首页 / 问答 / [.NET/.NET Core]使用NEST或者Elasticsearch.Net如何检查Elasticsearch 7及以上版本中是否存在指定的索引名称呢?

[.NET/.NET Core]使用NEST或者Elasticsearch.Net如何检查Elasticsearch 7及以上版本中是否存在指定的索引名称呢?

0

如题,在C#/.NET/.NET 5/.NET Core的应用程序编程开发中,正在使用NEST/Elasticsearch.Net访问Elasticsearch 7.x或者以上的版本。现需要检测Elasticsearch数据库中是否存在某个指定的索引名,应该如何实现呢?

回复 [×]
提交评论
请输入评论内容

1 个回答

  • 0

    在Elasticsearch 7对应的NEST或者Elasticsearch.Net这两个类库中,实现了根据指定检测某个索引是否存在的同步方法client.Indices.Exists(index)以及异步方法client.Indices.Exists(index),如下:

    此外,Indices还提供了一些判断其他Exists的方法,如:

    Rector的个人主页

    Rector

    2021-04-01 回答

    我来回答