我的程序可能连接很少,我需要关闭每一个连接。 请帮帮我。
#include <iostream>
#include <bsoncxx/builder/stream/document.hpp>
#include <bsoncxx/json.hpp>
#include <mongocxx/client.hpp>
#include <mongocxx/instance.hpp>
int main(int, char**) {
mongocxx::instance inst{};
mongocxx::client conn{mongocxx::uri{}};
bsoncxx::builder::stream::document document{};
auto collection = conn["testdb"]["testcollection"];
document << "hello" << "world";
collection.insert_one(document.view());
auto cursor = collection.find({});
for (auto&& doc : cursor) {
std::cout << bsoncxx::to_json(doc) << std::endl;
}
need close connection
}
conn.close()或如何关闭它?
答案 0 :(得分:5)
mongocxx::client
不提供显式断开连接或关闭方法,因为它实际上是另一个内部私有客户端类的包装器,它具有终止连接的析构函数。
如果您查看mongocxx::client
声明,则其中包含成员std::unique_ptr<impl> _impl
。
这是指向mongocxx::client::impl
实例的唯一指针,它实现了在客户端对象被销毁时调用libmongoc::client_destroy(client_t);
的析构函数。
如果您的应用程序要多次连接/重新连接,您可能有兴趣使用mongocxx::Pool
来管理与MongoDB实例的多个连接,然后您可以在必要时从中获取连接。如果您在多线程应用程序中,这也是使用mongocxx
的推荐方法,因为标准mongocxx:client
不是线程安全的。