Mike Causer
Member since May 31, 2012
- Profile: /members/10008-mike-causer.htm
- URL: http://smilenetworks.com.au
- Comments: 2
Recent Blog Comments By Mike Causer
-
ColdFusion 10 Beta - Closures And Function Expressions
Posted on Jul 18, 2012 at 11:22 PM
ArraySort() using closure example, fyi <code> data = [ "d", "b", "a", "c" ]; arraySort( data, function( a, b ) { return compare( a, b ); }); // data is now: [ "a", "b", "c", "d" ] <code>... read more »
-
ColdFusion 10 - An Augmented Virtual File System (VFS)
Posted on May 31, 2012 at 11:46 PM
What's the performance like? Does it run in a ram-disk, or unpack the jar to a temp directory and run it from there? I presume it doesn't decompress on the fly, cause that would be massively cpu intensive.... read more »