[ColdBox 3.5] Cache Bypass

Currently, when I use the fwCache url param, Coldbox clears the current event cache, but then goes on to cache the current event again – desired behaviour.

However, instead I’d like to purge the current event, but also not cache the current event.

At present, this is what happens:

I have a handler “test”, that just outputs now().

Request1: http://domain.com/test = 2012-11-19 13:40

Request2: http://domain.com/test?fwcache = 2012-11-19 13:42

Request3: http://domain.com/test = 2012-11-19 13:42

Instead, I’d like the third request to be fresh, not retrieve the cached output of the second request.

Is there a way of doing that simply?