How can I optimize this?
<cfftp connection = "myConnection"
username = "#username#"
password = "#password#"
server = "#server#"
action = "open"
timeout = "500"
stopOnError = "Yes">
<cfloop index="i" from="1" to="#ArrayLen(ImagesArray)#">
<cfset slocal = "temp\" & ImagesArray[i] >
<cfset sremoteFile = "Images\" & ImagesArray[i]>
<cftry>
<cfftp
connection = "myConnection"
action = "getFile"
name = "uploadFile"
transferMode = "binary"
failIfExists = "false"
localFile = "#slocal#"
remoteFile = "#sremoteFile#" />
<cfcatch>
<cfabort>
</cfcatch>
</cftry>
<cfset files = files & "|" & slocalFile>
<cfset fileliste = fileliste & arFiles[i] & "|">
</cfloop>
<cfftp connection = "myConnection"
action = "close"
stopOnError = "Yes">
-
1\$\begingroup\$ Could you give us more details on what you're trying to optimize? How many images are being FTP'd? What operating system are you using? \$\endgroup\$Ben Koshy– Ben Koshy2013年03月06日 15:02:25 +00:00Commented Mar 6, 2013 at 15:02
-
\$\begingroup\$ The number of images can vary from 1 to 100 and usning Windows Server. \$\endgroup\$user22818– user228182013年03月06日 15:18:48 +00:00Commented Mar 6, 2013 at 15:18
1 Answer 1
In my experience, FTP can use up a lot of network packets and CPU time just negotiating the starting and finishing of a single file. If there exists the option of having an archive uncompressed at the destination, I would suggest zipping the images into a single file for transport.
To get even more performance for the end user making the CF request you could perform the FTP transfer in an asynchronous thread via cfthread. Launch the thread that zips and sends the file and let the user know that the data is on its way.
Hope this helps, or at least inspires some new ideas.