Skip to content

Instantly share code, notes, and snippets.

@JamoCA
Created January 6, 2025 23:58
Show Gist options
  • Save JamoCA/4489707b2aa53f9afa7d2b172d7d1376 to your computer and use it in GitHub Desktop.
Save JamoCA/4489707b2aa53f9afa7d2b172d7d1376 to your computer and use it in GitHub Desktop.
Not sure if this works or not... testing.
<cfscript>
// https://www.bennadel.com/blog/4748-strange-implicitarrystructvar-behavior-in-coldfusion.htm
// 2025-01-06 This syntax appears to work.
arrayNew( 1 )
// Create a collection that is large(ish).
.resize( 1000 )
.set( 1, 1000, 1 )
// Iterate over the collection using PARALLEL THREADS.
.each(function(){
local.value = false
? "yay"
: { count: 0 } // CAUTION: Creates a shared variable.
;
// Increment LOCAL value.
local.value.count++;
},
true, // Parallel iteration.
20
)
;
// Output the private page variables.
for ( key in variables.keyArray() ) {
writeDump([ key, variables[ key ] ]);
}
</cfscript>
@JamoCA
Copy link
Author

JamoCA commented Jan 7, 2025

NOTE: I can't get this to work in CFFiddle. (It just returns a "504 Gateway Time-out" error for me. #smh)

Test it using https://trycf.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment