Barney, I am trying to use cfc caching properly, but this is my first real CFC-intensive project. I cache most anything that does not need to be created with each page call. But, for each page call, I do need to create some things:
1. Environment CFC (contains info about the web and server - purely public variables ex. Environment.Web.Root, Environment.Server.Directory). Very light weight, but does do some calculations. 2. RequestFacade CFC 3. Page CFC (display component which extends either oneColumnPage or TwoColumnPage which then extends AbstractPage - the multiple inheritence may cause some overhead???) But, then again, it might just be browser rendering also. If I take out my javascript file link, the page loads noticeably faster. I am not sure what to do about that. My JS file isn't even very large, nor does it do any processing during page load. Maybe firefox is just slow to parse JS files. I will keep trying to get the page load smaller. ....................... Ben Nadel Web Developer Nylon Technology 350 7th Ave. Suite 1005 New York, NY 10001 212.691.1134 x 14 212.691.3477 fax www.nylontechnology.com Sanders: Lightspeed too slow? Helmet: Yes we'll have to go right to ludacris speed. -----Original Message----- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, January 26, 2006 6:10 PM To: CF-Talk Subject: Re: Page loading time You've already elimintated all the stuff in between CF and your browser as potential causes, I assume? I highly doubt CFCs are to blame for your problem, though misuse of them (like anything else) could be it. I believe someone already mentioned disabling debugging, or at least the execution times, but if not, make sure you do that. Also make sure you're cachign your instances appropriately, as instantiation can be rather expensive in some cases. cheers. barneyb ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230584 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

