Steve Onnis wrote:
Does anyone know where I can find information on best practices for code?
We supplemented our intenal guidelines with good material from:
http://www.corfield.org/coldfusion/codingStandards.htm

It's worth noting that comparisons of things like:
Poor <cfif username is not "">
Better <cfif len(trim(username))>

Can often be very subjective... if you are looking at comparisons for purely performance reasons you should be aware that there are many examples of good performers in CF5 that are bad performers in CFMX.

For example, list manipulation in CFMX is often not as fast as CF5 but then array functions are vastly superior in CFMX.

-- geoff
http://www.daemon.com.au/


---
You are currently subscribed to cfaussie as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

MX Downunder AsiaPac DevCon - http://mxdu.com/


Reply via email to