Re: Performance Improvement Technique with cf8

2008-01-15 Thread Tom Chiverton
On Monday 14 Jan 2008, Don L wrote: I may be talking loud here... just a thought, if we categorize a cf app into three main blocks of system variable (global and local), presentation/UI and queries, would it be sensible to use cfthread for each of them and then join them? Maybe if CF is

Performance Improvement Technique with cf8

2008-01-14 Thread Don L
I may be talking loud here... just a thought, if we categorize a cf app into three main blocks of system variable (global and local), presentation/UI and queries, would it be sensible to use cfthread for each of them and then join them? It may pose some challenge when there's sequential

Re: Performance Improvement Technique with cf8

2008-01-14 Thread Brian Kotek
If you're proposing the use of cfthread for every user request to run separate threads for each of the blocks you're talking about, I would say don't. CFTHREAD is useful in certain situations but abuse of it will cause problems. http://www.petefreitag.com/item/650.cfm On Jan 14, 2008 2:31 PM,

Re: Performance Improvement Technique with cf8

2008-01-14 Thread Don L
If you're proposing the use of cfthread for every user request to run separate threads for each of the blocks you're talking about, I would say don't. CFTHREAD is useful in certain situations but abuse of it will cause problems. http://www.petefreitag.com/item/650.cfm I think you're right. Of