If I change "Max Pool Size" in my connection string, do I need to restart SQL Server for the change to take effect?

有帮助吗?

解决方案

When a connection is first opened, a connection pool is created based on an exact matching algorithm that associates the pool with the connection string in the connection. Each connection pool is associated with a distinct connection string. When a new connection is opened, if the connection string is not an exact match to an existing pool, a new pool is created.

http://msdn.microsoft.com/en-us/library/8xx3tyca(v=vs.110).aspx

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top