连接字符串中 ADO.Net 支持的连接池的最大和最小大小是多少?

发布于 2024-11-11 10:47:46 字数 98 浏览 2 评论 0原文

ADO.Net 在连接字符串中支持的连接池的最大和最小大小是多少。
Min Pool Size=[max size ?]
Max Pool Size=[min size]

What is the maximum and minimum size of connection pool ADO.Net Supports in the connection string.
Min Pool Size=[max size ?]
Max Pool Size=[min size]

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

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

发布评论

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

评论(4

兮子 2024-11-18 10:47:46

最大池大小没有记录限制。但是,对单个 SQL Server 的最大并发连接数有明确的记录限制(每个实例 32767 个,请参阅 http://msdn.microsoft.com/en-us/library/ms143432(v=SQL.90).aspx)

单个 ADO.NET 池只能访问单个实例,因此最大有效限制为 32767。

最小池大小为零

There is no documented limit on Max Pool Size. There is however an exact documented limit on maximum number of concurrent connections to a single SQL Server (32767 per instance, see http://msdn.microsoft.com/en-us/library/ms143432(v=SQL.90).aspx).

A single ADO.NET pool can only go to a single instance, so maximum effective limit is therefore 32767.

Min pool size is zero

坚持沉默 2024-11-18 10:47:46

最大池大小的默认值为 100,最小池大小为 0

Default value of max pool size is 100 and min pool size is 0

陪我终i 2024-11-18 10:47:46

默认连接池大小为 100 。您可以使用连接字符串中的“最大池大小”属性来增加池大小。例如 - Max Pool Size=1000;

如果您使用Azure SQL Server,并发连接数将取决于SQL Server Tier您正在使用的。

请参阅链接了解更多信息 - https: //learn.microsoft.com/en-us/azure/sql-database/sql-database-service-tiers

The Default Connection Pool Size is 100 . You can increase the pool size using 'Max Pool Size' property in the connection string. for example - Max Pool Size=1000;

If you are using the Azure SQL server, the number of concurrent connection will depends on SQL Server Tier that you are using.

Please refer the link for more information - https://learn.microsoft.com/en-us/azure/sql-database/sql-database-service-tiers

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