Re: Clearing task queue for cfthreads

2008-10-16 Thread Tom Chiverton
On Wednesday 15 Oct 2008, Marc Edwards wrote: reached the maxxed capacity for the task queue and was wondering how I can clear the tasks out or do I have to wait for it to do it itself. Thanks Once the thread terminates, it frees a slot. You set the number of slots in the administrator. --

Re: Clearing task queue for cfthreads

2008-10-16 Thread Wil Genovese
The point is (i think) and I've tested this myself is that even though a thread completes processing it does not self terminate in a timely fashion thus your thread queue maxes out. I think we both talking about set and forget threads where you really don't want the result of a thread back. You

Re: Clearing task queue for cfthreads

2008-10-16 Thread Tom Chiverton
On Thursday 16 Oct 2008, Wil Genovese wrote: The point is (i think) and I've tested this myself is that even though a thread completes processing it does not self terminate in a timely fashion thus your thread queue maxes out. The ones I've been launching in my current project always seem

Clearing task queue for cfthreads

2008-10-15 Thread Marc Edwards
Hi guys, I have been working at learning to use the tag cfthread in order to update information from a large text file into a table. The text file is not formatted correctly to use a bulk insert process in SQL. Anyways, I have reached the maxxed capacity for the task queue and was wondering