ElKlaaso
Member since Jul 16, 2014
- Profile: /members/12119-elklaaso.htm
- Comments: 2
Recent Blog Comments By ElKlaaso
-
Running Asynchronous CFThread Tags In Series Using ColdFusion
Posted on Jul 16, 2014 at 12:22 PM
Actually, you have to make a lock with another name and put all the code in the thread in it, so only 1 of those threads at 1 time executes. This has the disadvantage that downloading also occurs in serial manner, but still has the advantage that the main http/web thread can continue, which was go... read more »
-
Running Asynchronous CFThread Tags In Series Using ColdFusion
Posted on Jul 16, 2014 at 11:28 AM
I have used this in my code, thanks. But, i have 1 problem with it. In the lock you get the url of the image to be downloaded. These are picked up by each thread in a serial manner. Then you go out of the lock, and execute a cfhttp. That cfhttp could potentially take longer then normal (say 10se... read more »