连接字符串中 ADO.Net 支持的连接池的最大和最小大小是多少?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
默认最大池大小 100
最小池大小 0
用于 SQL Server 的 .NET Framework 数据提供程序的连接池
Default Max Pool Size 100
Min Pool Size 0
Connection Pooling for the .NET Framework Data Provider for SQL Server
最大池大小没有记录限制。但是,对单个 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
最大池大小的默认值为 100,最小池大小为 0
Default value of max pool size is 100 and min pool size is 0
默认连接池大小为 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