Because of the nature of dependencies in a large OO application, reloading one component can be difficult or impossible. Say you have a UserController that composes a UserService. You can't just recreate the UserController without also resolving the dependency to the UserService. And this only gets more complex as the dependencies expand: anything that has a reference to the old version of the UserController also needs to be refreshed, and so on. At a certain point, it becomes prohibitive to attempt to reload the dependency graph and is simpler to just reload everything. You can try updating your JVM to Java 1.6.10, which is in release candidate and which fixes the bugs in the previous versions regarding the class loader. This speeds up CFC creation greatly.
On Wed, Sep 3, 2008 at 9:10 AM, Bryan S <[EMAIL PROTECTED]> wrote: > I'm surprised I wasn't able to find more on this with google. > > I have a large app and I am doing a lot of repetitive work in one CFC. Each > time I make a change I have to wait for the whole app to refresh. I can't > pull it out into an app of its own because the cfc depends on a lot of > other > objects in the app. > > Is there a way to tell just the one cfc to to refresh and leave the rest of > them alone? > > If not any other suggestions to speed up this process? > > Bryan > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:311995 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

