how to find the execution time for partcular code blocks in ColdFusion
For finding the execution time of particular code blocks, we can use the ColdFusion function GetTickCount(). Without enabling the debugging information in the Administrator, we ca use the metho d GetTickCount() for finding the time used for executing a partcul ar code block. For example, <cfset t1 = GetTickCount()> code block begin s.. ------------------------------------- code bloc k ends. <cfset t2= GetTickCount()> <cfset t otal=t2-t1> <cfoutput> Time take n for execution was #total#</cfoutput >