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
Explanation
The
IncrementValue() function is very slow, replace it with the addition operator
+