gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 23:28:15 25 4
gpt4 key购买 nike

在 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;

同样,不同的方法已移至:
  • 集群
  • 查询
  • 节点
  • 等等...
  • 关于nest - Elasticsearch.NET 版本 7 - 如何检查索引是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56836295/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com