The other day, I posted a tutorial on ColdFusion 8's new CFThread tag, specifically, how to get data into and out of the threads. I had misunderstood the documentation when it said that all threads on the page share the same VARIABLES scope. I had taken this to mean each CHILD thread. Thankfully, Dan G. Switzer, II pointed out my misunderstanding and I was able to change the previous CFThread blog post. What Dan pointed out to me was that all the threads do indeed share the same VARIABLES scope, but that the primary page (or parent page) is also included in that pool of threads. Meaning, all threads on a given page request share the same VARIABLES scope.
To demonstrate this concept, take a look at this:
Launch code in new window » Download code as text file »
Notice that while I am launching two child threads, I am requesting that the parent page wait for each thread to finish processing before it executes the next. This effectively defeats the purpose of the CFThread tag, but it is necessary to show that each thread shares the same VARIABLES scope. Running the above code, we get:
Thread Two: From Thread One!
Parent: From Thread One!
What you can see by the output is that the first thread updates the message value. This change is reflected not only in the message available to the second thread, but also to the parent page.
Thanks Dan, you the man!
Download Code Snippet ZIP File
Comments (1) | Post Comment | Ask Ben | Permalink | Other Searches | Print Page
Fusion Authority Quarterly Update Filling In The Gaps
CFUNITED Nintendo Wii Contest Accepting Any Open Source Work
Good notes about ColdFusion 8.
I enjoy reading your articles.
Keep it up.
Pinal Dave
Posted by Pinal Dave on Jun 3, 2007 at 7:27 PM