Azure SQL 与 NodeJS
Azure SQL With NodeJS
我在 Azure 中有一个暂存 SQL 数据库,我使用 mssql 节点模块连接到它。
我遇到的唯一问题是 Azure 中的空闲连接策略。
闲置 30 分钟后,连接将自动关闭。
有遇到同样问题的人吗?
您是否在您的应用中使用连接池?
根据 "Connection Constraints" 在 Azure SQL Database General Guidelines and Limitations 中:
"A logged-in session that has been idle for 30 minutes will be
terminated automatically. We strongly recommend that you use the
connection pooling and always close the connection when you are
finished using it so that the unused connection will be returned to
the pool."
我在 Azure 中有一个暂存 SQL 数据库,我使用 mssql 节点模块连接到它。 我遇到的唯一问题是 Azure 中的空闲连接策略。 闲置 30 分钟后,连接将自动关闭。
有遇到同样问题的人吗?
您是否在您的应用中使用连接池?
根据 "Connection Constraints" 在 Azure SQL Database General Guidelines and Limitations 中:
"A logged-in session that has been idle for 30 minutes will be terminated automatically. We strongly recommend that you use the connection pooling and always close the connection when you are finished using it so that the unused connection will be returned to the pool."