Skip to content

Instantly share code, notes, and snippets.

@cfjedimaster
Created February 23, 2014 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cfjedimaster/9176692 to your computer and use it in GitHub Desktop.
Save cfjedimaster/9176692 to your computer and use it in GitHub Desktop.
<cfset a = []>
<cfloop index="x" from="1" to="99">
<cfset s = {}>
<cfset s.name = createUUID()>
<cfset s.buffer = repeatString("x", 900)>
<cfset arrayAppend(a, s)>
</cfloop>
<cfset then = getTickCount()>
<cfdump var="#a#">
<cfset dur = getTickCount() - then>
<cfoutput>#dur# ms</cfoutput>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment