I hit refresh and got 611 ms Refresh again 1302 ms Ditto 601 ms Ditto 601 ms Ditto 1362 ms
What is up with that? -----Original Message----- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 2:33 PM To: CF-Talk Subject: RE: CF MX performance issue 21k IIS log file CF MX P3 500 No Trusted Cache 1172 ms -----Original Message----- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 2:17 PM To: CF-Talk Subject: CF MX performance issue Could somebody who has CF MX on the same machine as some older version of CF test the script below for me? I find the results a bit disturbing at first sight (but maybe you see something wrong with the code). CF MX CF 4.5 trusted cache no trusted cache no debugging debugging Duron 800 dual Athlon 1.2 GHz 1820 ms 150 ms Jochem <cfscript> // Put in the location of some document of about 25 KB. request.File = ""; CRLF = chr(10); CurrentPosition = 72; </cfscript> <cffile action="READ" file="#request.file#" variable="temp"/> <cfscript> temp = ToBase64(temp); if (Len(temp) MOD 4 IS "1") temp = RemoveChars(temp, Len(temp) - 1, 1); request.StartTime = GetTickCount(); while (CurrentPosition LTE Len(temp)) { temp = Insert(CRLF,temp,CurrentPosition); CurrentPosition = CurrentPosition + 72 + Len(CRLF); } WriteOutput(GetTickCount() - request.StartTime & " ms"); </cfscript> ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

