If I have a Generator.cfc with methods:

numeric function next()
{
    return variables.num++;   // Is ++ an atomic operation??
}

And:

application.generator = new generator();

If every request calls application.generator.next(), will this generator ever generate the same number twice on heavy load? In another word... is this thread-safe? If not, where should the lock be?

link|improve this question

Related blog post: Thread-safety of integer counters in ColdFusion - blog.bullamakanka.net/2010/01/… – Henry Jan 7 '10 at 20:20
feedback

3 Answers

up vote 4 down vote accepted

You can make it atomic by wrapping the increment in a lock. Since ++ requires three operations (fetch, add, store) I don't think it's atomic on its own on any platform.

link|improve this answer
I think you're right about ++ but there are atomic ways of incrementing without locks on some platforms. Interlocked.Increment on .NET, for example. If Java has an equivalent, it might be possible to call that directly and avoid the performance hit of locking. – Joel Mueller Nov 30 '09 at 22:07
I see I didn't read far enough before commenting, Java does have such a construct, as Bob points out. – Joel Mueller Nov 30 '09 at 22:08
feedback

You could also look into the Java 5 class Atomic Integer

The ColdFusion code you need is something like this (I haven't tested it):

<cfset i = createObject("java", "java.util.concurrent.atomic.AtomicInteger").init(startValue) />
<cfset newValue = i.incrementAndGet() />
link|improve this answer
nice, I like this! – Henry Nov 30 '09 at 19:48
feedback

Yep, as Donnie pointed out CFLOCK is your friend here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.