Hopefully this is an easy question for someone. If...
# cfml-general
s
Hopefully this is an easy question for someone. If a page starts a thread, or 10 threads with cfthread, and does not call join before exiting the request. Are the threads 1) still running (from experience, it appears they are), and 2) are they subject to request timeout parameters - or any other timeout factor, or will they run until terminated?
z
1) yes, 2) easy to test with sleeps() and cflog.
s
True. I thought I would try the easy route first. 😉
z
report back 🙂
s
For anyone interested, threads last until they end or are terminated. I ran tests in excess of 24 hours.