.Net Sql Provider 中的连接池 - 当连接关闭时

发布于 2024-08-15 03:02:14 字数 61 浏览 5 评论 0原文

我只是想知道.Net Sql Provider 在多长时间后将关闭池中的连接?

谢谢,帕维尔

I just wonder after what duration .Net Sql Provider will close connection which is in pool?

Thanks, Pawel

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

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

发布评论

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

评论(1

救赎№ 2024-08-22 03:02:14

文档未指定连接池中的连接保持打开状态的时间长度。优化器会做出决定,并且其算法可能会在 ADO.NET 版本(甚至可能是 Windows 更新补丁)之间发生变化。

您可以通过 连接字符串设置:

Connection Lifetime=0

默认为 0,这意味着只要优化器认为有用,连接就可以存在。

The documentation does not specify how long connections in the connection pool stay open. The optimizer decides, and its algorithm might change between versions of ADO.NET (or maybe even Windows Update patches.)

You can control the maximum lifetime through a connection string setting:

Connection Lifetime=0

By default, it's 0, which means a connection can live as long as the optimizer thinks it's useful.

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