Without using debugging, you can do some manual checking using the getTickCount() function. For example...
<!--- Open template. ---> <cfset variables.time_start = getTickCount()> <!--- Do lots of stuff... ---> <!--- Close of template. ---> <cfset variables.time_total = getTickCount() - variables.time_start> Processing took <cfoutput>#variables.time_total#</cfoutput> ms. Hope that helps.. -Justin Scott ----- Original Message ----- From: "Angel Stewart" <[EMAIL PROTECTED]> To: "CF-Community" <[EMAIL PROTECTED]> Sent: Monday, March 10, 2003 10:31 AM Subject: How long does this take to process? > Hey guys and gals, > > How would I check how long a page took to process, without turning on > debugging for a CFMX server? > > Is there some variable I can CFOUTPUT or something like that? > > We want to switch over from MS Access to MySQL for a website and want to > check the before and after times for things like listing data etc. :) > > -Gel > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=5 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=5 Get the mailserver that powers this list at http://www.coolfusion.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.5
