My Account   Contact Us    
  
» HomeProductsSupportDeveloper CommunityCompany
Use of IncrementValue function
IncrementValue is very slow use the addition operator inside of cfset instead.

Type: performance
Severity: (3)

Incorrect example
<cfset x = IncrementValue(x)>

Resolution

<cfset x = x + 1>
Explanation

The IncrementValue() function is very slow, replace it with the addition operator +

Sign up for our newsletter: | Subscribe with RSS: RSS
© ActivSoftware 1999 to 2005 | Privacy Statement