Escape Keys - TomdeMan's Blog

Coldbox and Coldspring have a lot to offer when it comes to development. However, loading time is the price we pay.

There are a number of settings in Coldbox to optimize performance based on environment, but developing locally with nothing cached can drag between requests. Especially, if you are using a large number of beans with Coldspring.

If you want to trigger a reload it's as simple as:

<cfset getPlugin('ioc').configure() />

Where and how you use this is up to you.

May be we can get it integrated into the Coldbox Sidebar.

Comments:

[Add Comment]

Ernst van der Linden says:

You could create an interceptor which intercepts
certain url vars.
e.g. : isIOCConfigure=true which executes the proper code.

Make sure you implement the isDevelopment-check!

8/29/08 8:36 AM

[Add Comment]