gpt4 book ai didi

coldfusion - ColdFusion 11 cfflush标记无法正常工作?

转载 作者:行者123 更新时间:2023-12-04 02:24:15 25 4
gpt4 key购买 nike

有人对ColdFusion 11中的cfflush标签有疑问吗?我们有一个例程,可以在处理循环时更新实时记录计数。在ColdFusion 10中,这可以正常工作。在ColdFusion 11中,它一直等到循环结束才更新屏幕。并不是我们所期望的。

编辑以根据要求添加代码...

<script language="javascript">
addOutputLine('<br /><span id="insertCount">Records Inserted: 0</span>')
</script>
<cfset insertCount = 0>
<cfset updateCountAfter = 1>
<cfif qry.recordcount gt 5000>
<cfset updateCountAfter = 10>
</cfif>

<cfoutput query="qry" startrow="#DATASTART#">
<!---do some stuff here that is not important to this issue--->

<cfset insertCount = insertCount + 1>
<cfif updateCountAfter gt 1>
<cfif insertCount mod updateCountAfter eq 0>
<script language="javascript">document.getElementById('insertCount').innerHTML = 'Records Inserted: #insertCount#';</script>
</cfif>
<cfelse>
<script language="javascript">document.getElementById('insertCount').innerHTML = 'Records Inserted: #insertCount#';</script>
</cfif>

<cfflush>

</cfoutput>

最佳答案

从评论提升

为了使<cfflush>标记与Web服务器一起正常工作,需要进行一些配置设置。在Configuring web servers in Windows文档页面上的“为Windows中的ColdFusion配置IIS”部分下,它指出:

To disable webserver buffer, change the is_buffer_enable [sic] to false in the cfroot\config\wsconfig\1\isapi_redirect.properties file. Disable webserver buffer if you want cfflush to work over an IIS connector. If your application does not use cfflush, set it to true for increase in the performance.



请注意,我在上面引用的Adobe文档中有一个错字。它应该声明 iis_buffer_enable,而不是 is_buffer_enable(缺少“i”)。感谢KrunchMuffin指出这一点。

您将需要重新启动IIS,此更改才能生效。

我不确定禁用此设置会对性能产生什么影响。您需要针对您的特定环境进行一些负载测试才能看到。

关于coldfusion - ColdFusion 11 cfflush标记无法正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27115260/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com