指定 JDBC 数据库驱动程序最大线程数
Specifying a JDBC Database Driver Max Threads
我有一个 ColdFusion 10 服务器。我正在使用 JDBC 驱动程序连接到 db2 数据库。我看到了这张纸条。这个设置在哪里?我还查看了 neo*.xml 文件,但没有看到任何数据库驱动程序线程设置。我也不确定这是否特定于 ColdFusion 2016。我也在 ColdFusion 2018 管理员中寻找它,但没有运气。
ColdFusion Server takes the SQL content of the cfquery tag and passes
it to the specified driver for the data source. The driver request is
handled by a thread. By default, the ColdFusion Administrator is
configured to limit the amount of active threads to 5.
https://helpx.adobe.com/coldfusion/kb/database-connections-handled-coldfusion.html
ColdFusion 管理员将最大连接数限制为 5,只有在禁用 "maintain connections" 时才会受到影响。
如果您想将默认活动连接数增加到 100,请启用 "maintain connections" 并检查 "limit connections" 为某个数字。
默认情况下,ColdFusion 不会在 neo-datasource.xml 上设置默认的最大连接数 属性。
请找到以下 XML 个配置以获取 2 个配置。
<var name="myDataSource">
....
<var name="pooling">
<boolean value="true" />
</var>
....
<struct type="coldfusion.server.ConfigMap">
<var name="MAXCONNECTIONS">
<string>100</string>
</var>
</struct>
....
</var>
我有一个 ColdFusion 10 服务器。我正在使用 JDBC 驱动程序连接到 db2 数据库。我看到了这张纸条。这个设置在哪里?我还查看了 neo*.xml 文件,但没有看到任何数据库驱动程序线程设置。我也不确定这是否特定于 ColdFusion 2016。我也在 ColdFusion 2018 管理员中寻找它,但没有运气。
ColdFusion Server takes the SQL content of the cfquery tag and passes it to the specified driver for the data source. The driver request is handled by a thread. By default, the ColdFusion Administrator is configured to limit the amount of active threads to 5.
https://helpx.adobe.com/coldfusion/kb/database-connections-handled-coldfusion.html
ColdFusion 管理员将最大连接数限制为 5,只有在禁用 "maintain connections" 时才会受到影响。
如果您想将默认活动连接数增加到 100,请启用 "maintain connections" 并检查 "limit connections" 为某个数字。
默认情况下,ColdFusion 不会在 neo-datasource.xml 上设置默认的最大连接数 属性。 请找到以下 XML 个配置以获取 2 个配置。
<var name="myDataSource">
....
<var name="pooling">
<boolean value="true" />
</var>
....
<struct type="coldfusion.server.ConfigMap">
<var name="MAXCONNECTIONS">
<string>100</string>
</var>
</struct>
....
</var>