Caching Issues

I switched the following on

coldbox.debugMode = false;

coldbox.handlersIndexAutoReload = false;

coldbox.configAutoReload = false;

coldbox.handlerCaching = true;

coldbox.eventCaching = true;

And started getting the following type of error, not all the time but enough to be a nuisance.

The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code.

Null Pointers are another name for undefined values.

The error occurred in C:\projects\ColdFusion\dev.andyscott.id.au\coldbox\system\web\services\PluginService.cfc: line 141
Called from C:\projects\ColdFusion\coldbox\system\web\Controller.cfc: line 350
Called from C:\projects\ColdFusion\ coldbox\system\includes\BugReport.cfm: line 122
Called from C:\projects\ColdFusion\dev.andyscott.id.au\coldbox\system\web\services\ExceptionService.cfc: line 87
Called from C:\projects\ColdFusion\ coldbox\system\Coldbox.cfc: line 307
Called from C:\projects\ColdFusion\wwwroot\Application.cfc: line 60

139 : //end else if instance not in cache.

140 : else{

141 : oPlugin = refLocal.oPlugin;

142 : }

143 :

Regards,

Andrew Scott

http://www.andyscott.id.au/

I switched the following on

coldbox.debugMode = false;

coldbox.handlersIndexAutoReload = false;

coldbox.configAutoReload = false;

coldbox.handlerCaching = true;

coldbox.eventCaching = true;

And started getting the following type of error, not all the time but enough to be a nuisance.

The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code.

Null Pointers are another name for undefined values.