ColdBox Forums Notification: Post to One busy request times out the others

Title: One busy request times out the others
Thread: One busy request times out the others
Forum: Need Help?
Conference: ColdBox
User: AndrewClarke Hi. I am developing a site with ColdBox and ColdSpring that has a couple pages
that take a long time (> 5 minutes) to return. During this time, any other
request I make to the application, coldbox.cfm can't execute this code starting
line 71:

<cflock type="exclusive" name="#appHash#" timeout="#lockTimeout#">
<cfset
application.cbController.getService("loader").setupCalls(COLDBOX_CONFIG_FILE)>
</cflock>

I guess my other long-running request has an exclusive lock on
cbController for a good 5-10 minutes.

Is there someway I can rewrite what I'm
doing that bypasses this lock? I've tried turning ColdBox caching off as much
as I can by doing this:

<Cache>
<ObjectDefaultTimeout>20</ObjectDefaultTimeout>
<ObjectDefaultLastAccessTimeout>5</ObjectDefaultLastAccessTimeout>
<ReapFrequency>1</ReapFrequency>
<MaxObjects>1</MaxObjects>
<FreeMemoryPercentageThreshold>1</FreeMemoryPercentageThreshold>
</Cache>
but that hasn't helped.

Thanks and Happy New Year,
- Andrew.
http://www.luismajano.com/forums/index.cfm?event=ehMessages.dspMessages&threadid=317ACCB8-FF65-CEF6-65841B62703B5E40