Re: custom tags slow?

2008-11-13 Thread Brian Dumbledore
Ah! cfflush won't work.. thanks. I am trying to gather some points against using custom tags with a body when not really needed. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

Re: custom tags slow?

2008-11-13 Thread Brian Dumbledore
Good idea.. Thanks ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

custom tags slow?

2008-11-12 Thread Brian Dumbledore
I put my header and footer html in a custom tag (header - executionmode eq start, footer - executionmode not start). And I have rest of my cf stuff within the tag body. Is this recommended? My concern is, having huge body will somehow slow down the tag/page ? Is it better to have two udfs?

Re: custom tags slow?

2008-11-12 Thread Barney Boisvert
There is slight overhead for invoking a custom tag, but it's similar to invoking a UDF, and small enough to safely ignore. Certainly nothing to worry about until you have load testing data that says you should, and even then there's a LONG list of other things to optimize first. cheers, barneyb

Re: custom tags slow?

2008-11-12 Thread Brian Dumbledore
Thanks. I just thought if the tag has a body too, then it somehow has to 'keep track' of the body hence it will be slow. But glad to know that isn't the case. ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: custom tags slow?

2008-11-12 Thread Casey Dougall
On Wed, Nov 12, 2008 at 4:52 PM, Brian Dumbledore [EMAIL PROTECTED] wrote: I put my header and footer html in a custom tag (header - executionmode eq start, footer - executionmode not start). And I have rest of my cf stuff within the tag body. Is this recommended? My concern is, having huge

RE: custom tags slow?

2008-11-12 Thread Gaulin, Mark
Mark -Original Message- From: Brian Dumbledore [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2008 5:00 PM To: cf-talk Subject: Re: custom tags slow? Thanks. I just thought if the tag has a body too, then it somehow has to 'keep track' of the body hence it will be slow