Learning ColdFusion 8: CFThread's VARIABLES Scope Update (Thanks Dan G. Switzer, II)

Posted June 3, 2007 at 6:34 PM by Ben Nadel

Tags: ColdFusion

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:

  • <!--- Set a message into the VARIABLES scope. --->
  • <cfset VARIABLES.Message = "From Parent Page" />
  •  
  •  
  • <!--- Launch a child thread. --->
  • <cfthread
  • action="run"
  • name="ThreadOne">
  •  
  • <!---
  • Store a message into this thread's VARIABLES
  • scope. This is NOT the page's VARIABLES scope;
  • threads have their own version.
  • --->
  • <cfset VARIABLES.Message = "From Thread One!" />
  •  
  • </cfthread>
  •  
  •  
  • <!---
  • Let's wait for thread one to finish so that we know
  • exactly where all of our values are coming from.
  • Remember, these threads are asyncronous. In fact, they
  • might not even execute in the same order in which they
  • were defined.
  • --->
  • <cfthread
  • action="join"
  • name="ThreadOne"
  • />
  •  
  •  
  • <!--- Launch a child thread. --->
  • <cfthread
  • action="run"
  • name="ThreadTwo">
  •  
  • <!---
  • Get the message from the VARIABLES scope
  • and store it into this thread's publically
  • accessible THREAD scope.
  • --->
  • <cfset THREAD.Message = VARIABLES.Message />
  •  
  • </cfthread>
  •  
  •  
  • <!---
  • Join the second thread to the current page process.
  • After this, all our child threads will have finished
  • executing (and in the same order as they were declared).
  • --->
  • <cfthread
  • action="join"
  • name="ThreadTwo"
  • />
  •  
  •  
  • <!--- Output the message stored into thread two. --->
  • Thread Two: #ThreadTwo.Message#<br />
  •  
  • <!--- Output the message stored in the parent. --->
  • Parent: #VARIABLES.Message#

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!


You Might Also Be Interested In:



Reader Comments

Jun 3, 2007 at 7:27 PM // reply »
4 Comments

Good notes about ColdFusion 8.
I enjoy reading your articles.
Keep it up.
Pinal Dave


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 22, 2013 at 7:52 AM
Nested Views, Routing, And Deep Linking With AngularJS
Hi, Just a quick thank you. As it happens, for my own purposes, the pending ui-router work being done in native angular is likely the one I'll adopt, but your exploration, code and documentation of ... read »
May 22, 2013 at 4:43 AM
How Do You Use The ColdFusion CFParam Tag?
'<cfparam>' or 'isDefined()and <cfset>' performs the same task.Is there any difference? ... read »
May 21, 2013 at 7:46 PM
Using Plupload For Drag & Drop File Uploads In ColdFusion
No luck. At least I have uncovered the cause, URLScan 3.1. Here is what I see in the IIS log when a file is over 30mb. 2013-05-21 23:29:05 10.105.45.128 GET /plupload/assets/jquery/jquery-1.8. ... read »
May 21, 2013 at 6:12 PM
Using Plupload For Drag & Drop File Uploads In ColdFusion
Ben, I did not see you after Pete Freitag's Lockdown session at cfObjective but he said that IIS sets file size limits at 30MB by default which just happened to be the threshold for file size when ... read »
May 21, 2013 at 11:51 AM
Ask Ben: Parsing Very Large XML Documents In ColdFusion
Looking at my first ever XML document that I have to parse and put into MS SQL 2000 with CF8. I get it to list the desired Field name, many times over, and have a long list of this field name displa ... read »
May 21, 2013 at 9:25 AM
Turning Off and On Identity Column in SQL Server
you are awesome..i am lucky to get this blog between such a garbage one....Thanks, Prashant ... read »
May 20, 2013 at 4:38 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
@Dana, Your confusion is well founded, since this is a very confusing features. In fact, it ONLY works if you use array notation. Meaning, that this: arrayToList( query[ "columnName" ] ) ... read »
May 20, 2013 at 4:34 PM
Using A Dynamic Column Name With ValueList() In ColdFusion
I was thinking chicken and the egg, I wouldn't have expected it to work in the valuelist going in I guess. Maybe I just need a beer, long day :) ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools