Created
January 6, 2025 23:58
-
-
Save JamoCA/4489707b2aa53f9afa7d2b172d7d1376 to your computer and use it in GitHub Desktop.
Not sure if this works or not... testing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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/