thanks!
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Daniel Elmore
Sent: Friday, July 15, 2005 12:41 PM
To: [email protected]
Subject: RE: performance question

You won't see a difference unless you get into thousands of outputs, even then I believe the parsing time will only vary when the page is first processed. Once CF is compiled into bytecode I'd bet an optimizer makes Method 1 code and Method 2 code look almost identical.
 
Go with what's more readable.
 
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Kevin Fricke
Sent: Friday, July 15, 2005 12:19 PM
To: CFLIST
Subject: performance question

I was wondering if there was much of a performance difference in CF with the following two output methods, any ideas?
 
Method 1:
 
<cfoutput>
Variable: #variable#
Variable: #variable#
Variable: #variable#
Variable: #variable#
Variable: #variable#
Variable: #variable#
Variable: #variable#
</cfoutput>
 
 
OR
 
Method 2:
 
Variable: <cfoutput>#variable#</cfoutput>
Variable: <cfoutput>#variable#</cfoutput>
Variable: <cfoutput>#variable#</cfoutput>
Variable: <cfoutput>#variable#</cfoutput>
Variable: <cfoutput>#variable#</cfoutput>
Variable: <cfoutput>#variable#</cfoutput>
Variable: <cfoutput>#variable#</cfoutput>
 
 
 
 
 
thanks!
 
Kevin Fricke
 

Reply via email to