Connection pooling in SQL SERVER (express)- recommended amount?

后端 未结 3 1937
南笙
南笙 2021-01-07 13:12

is there a recommended amount of connections fro each application i have for use with connection pooling.., my apps are using asp.net and c# against sql express on the \"sam

3条回答
  •  天涯浪人
    2021-01-07 13:41

    SQL Express can handle the same amount of connections in theory as it's big brother SQL Server, which is 32,767. However ... SQL Express would run into it's memory limit far before it'd ever get to that number since it's limited to using 1 GB of RAM.

提交回复
热议问题