.Net Sql Provider 中的连接池 - 当连接关闭时
我只是想知道.Net Sql Provider 在多长时间后将关闭池中的连接?
谢谢,帕维尔
I just wonder after what duration .Net Sql Provider will close connection which is in pool?
Thanks, Pawel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档未指定连接池中的连接保持打开状态的时间长度。优化器会做出决定,并且其算法可能会在 ADO.NET 版本(甚至可能是 Windows 更新补丁)之间发生变化。
您可以通过 连接字符串设置:
默认为 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:
By default, it's 0, which means a connection can live as long as the optimizer thinks it's useful.