On Jul 17, 1:06 am, Jeff Coughlin <[email protected]> wrote: > It has not been merged with 5.1.x (although it's a simple enough > change to migrate over. I'll leave that call up to Mat). Keep in > mind that unless you're using CF8+, you likely won't see much of a > change (unless you're using a newer JVM).
Performance should be across all CFML engines. The original code used the framework to create a dummy object using getData(). getData() checks objectbroker (in memory), then the database, and if it finds nothing returns a "default" object. That's convenient if you are dealing with a single object. It's not a great look when you are making a 1000 calls on the framework. The change replaces the call for a default object with a simple struct declaration. This is a vast improvement all round. Funny how little things can have big impacts ;) -- geoff http://www.daemon.com.au/ --~--~---------~--~----~------------~-------~--~----~ You received this message cos you are subscribed to "farcry-dev" Google group. To post, email: [email protected] To unsubscribe, email: [email protected] For more options: http://groups.google.com/group/farcry-dev -------------------------------- Follow us on Twitter: http://twitter.com/farcry -~----------~----~----~----~------~----~------~--~---
