3

我有一个调用 cfcomponent 对象的循环。

    <cfset queue_list = "1,2,3">        
    <cfloop list="#queue_list#" index="z">  
                <cfset args = StructNew()>
                <cfset args.group_num = z>          
<cfset args.client_id = 1>          
                <cfset processdownloads = downloader.ProcessDownload(argumentCollection=args)>
            </cfloop>

该组件具有以下功能:

    <cffunction name="ProcessDownload" access="public" output="false">
        <cfargument name="group_num" type="numeric" required="yes">                     
        <cfargument name="client_id" type="numeric" required="yes">                     

        <cfset variables = arguments>

        <cfthread action="RUN" name="download_#variables.client_id#_#variables.group_num#" priority="high">

                    <cffile action="WRITE" file="#expandpath('download\download_in_process\')##variables.group_num#.json" output="#variables.group_num#">           

</cfthread>

</cffunction>

当我运行它时,我收到以下错误:

cfthread 标记的属性验证错误。无法创建名为 DOWNLOAD_4003_3 的线程。线程名称在一个页面中必须是唯一的。
错误发生在第 29 行。

我不知道为什么,但它似乎运行了两次。它不应该生成具有唯一线程名称的新线程,从而避免线程名称冲突吗?

4

2 回答 2

3

将 group_num 作为属性传递,这样您就可以在内部访问它,而不会遇到变量范围被覆盖的问题。

<cfthread action="RUN" name="download_#arguments.client_id#_#arguments.group_num#" priority="high" group_num="#arguments.group_num#">
    <cffile action="WRITE" file="#expandpath('download\download_in_process\')##attributes.group_num#.json" output="#attributes.group_num#">           
</cfthread>

其他人都是对的,问题是你的变量范围。发生的事情是每个循环都覆盖了变量范围,因此在创建线程时,它从变量范围中获取线程名称,该变量范围已经设置为 3 ......所以所有三个线程都可能尝试设置为相同姓名。

你能用参数命名它吗?如果没有......你可以使用本地。获取名称并将信息传递到 CFThread Creation。

您在组件内部是正确的,您无法访问参数等,这些参数的行为与组件外部非常不同。

Ben Nadel 写了一篇关于这些问题的好文章 http://www.bennadel.com/blog/2215-an-experiment-in-passing-variables-into-a-cfthread-tag-by-reference.htm

Ben 像往常一样赢得胜利。

于 2015-02-25T00:34:06.003 回答
0

这可能是因为您的 CFC 代码不是线程安全的。

这个:

<cfset variables = arguments>

将函数的参数复制到对象的共享范围内。如果downloader对象在请求之间共享,那么每个请求都将使用另一个请求的值。

为什么要将参数复制到对象变量范围中?这似乎是一件很奇怪的事情。

于 2015-02-24T23:25:12.590 回答