MongoDB C# 连接/断开(官方驱动程序)

发布于 2024-10-24 06:48:57 字数 277 浏览 1 评论 0原文

请告诉我如何通过官方 C# 驱动程序连接/断开到 MongoDB?问题很简单,乍看之下问题很微不足道,但是:

1)我是否需要自己调用 Disconnect 方法,或者它会被诸如 Dispose 之类的方法关闭?

2)每次需要向Mongo发出请求时都需要连接吗?还是保持连接会更好?

3)Reconnect方法有用吗?你用它吗?

还有其他建议吗?

非常感谢!!!

更新: 我的问题是关于连接的生命周期;)

Please tell me how I must connect/disconnect to MongoDB via official C# driver? Question is simple and problem is trivial for first look, but:

1) Do I need to call Disconnect method by myself, or it will be closed by some method like Dispose?

2) Do I need to Connect every time when I need to make request to Mongo? Or it will be better to keep Connection?

3) Is method Reconnect are useful? Do you use it?

Any additional advice?

Thank you very much!!!

Update:
My question is about the life cycle of connections;)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清醇 2024-10-31 06:48:57

官方驱动内部维护了一个连接池。您不需要处置任何连接,甚至不需要建立新连接。

请求连接就这么简单,

MongoServer.Create(mongoConnectionString)

请阅读 doc 了解更多信息驱动程序的网站

The official driver maintains a connection pool internally. You do not need to dispose of any connections or even establish new connections.

Requesting a connection is as easy as this

MongoServer.Create(mongoConnectionString)

Read more at the doc site for the driver.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文