我有一个自动例程,可由用户触发以将图像上传到 Amazon S3。用户通常会上传超过 500 个项目,我正在努力寻找一种方法来避免进程超时。
现在我正在这样做:
<form action="hs_import.cfm?ansicht=Bilder&RequestTimeout=5000" method="post" name="uploader">
...
<input type="button" OnClick="bilder_upload()" value="#tx_gen_run#">
<input type="hidden" name="artikel_uploaden" value="ja">
<input type="hidden" name="ansicht" value="imageloader">
</form>
这触发了一个javascript函数,它触发了我的上传(没有详细信息):
<cfif isdefined("artikel_uploaden")>
<cfscript>
S3 variables
</cfscript>
<!--- get img paths to upload --->
<cfquery datasource="db" name="img_paths">
SELECT DISTINCT imgpath
</cfquery>
<cfif img_paths.recordcount GT 0>
<cfloop query="img_paths">
<cfif img_paths.typ NEQ "img">
<cfset variables.testFilePath = img_paths.bildpfad & img_paths.bilddateiname>
<cfset variables.fileExt = ListLast(variables.testFilePath, ".")>
<!--- get image --->
<cfhttp timeout="45"
throwonerror="no"
url="#variables.testFilePath#"
method="get"
useragent="Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12"
getasbinary="yes"
result="variables.objGet">
<!--- validate --->
<!--- upload 4 sizes (s,m,l,xl) to S3 --->
<cftry>
<cfset objImage = ImageNew(variables.objGet.FileContent )>
<cfimage source="#objImage#" action="write" quality=".99" destination="#variables.tempDirectory#_base_#img_paths.bilddateiname#" overwrite="yes">
<cfset variables.basePath = variables.tempDirectory & "_base_" & img_paths.bilddateiname>
<cfimage action="read" source="#variables.basePath#" name="base">
<cfset variables.imageSrc = variables.tempDirectory>
<cfscript>
if ( ImageGetWidth( base ) LT ImageGetHeight( base ) ) {
// portrait
} else {
// landscape/square
}
// cleanup
</cfscript>
<!--- create IMG entry in media table --->
<cfquery datasource="db"></cfquery>
</cfif>
<cfcatch>
<cfset variables.errorCount = variables.errorCount+1>
<cfset variables.failedLoads = variables.failedLoads & img_paths.bilddateiname & " (" & tx_pop_error & ":" & tx_errors_import_ext & "), ">
</cfcatch>
</cftry>
</cfif>
</cfloop>
<!--- alert on success and errors --->
</cfif>
这可以正常工作,但是如果图像数量太大,浏览器就会挂起/超时,所以我通常会看到一个加载屏幕,它永远不会完成并且不会提醒成功/错误。
问题:
处理这样的大文件上传有什么更好的选择?例如,这是否应该进入 a cfschedule
,以便它可以在后台运行?
感谢提示!