Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Zac SpitzerZac SpitzerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Fix versions
Priority
New
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Zac Spitzer
Zac SpitzerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Fix versions
Priority
Created 20 August 2018 at 10:31
Updated 22 October 2020 at 15:21
Resolved 22 October 2020 at 15:21
debug entries take up memory and turning off the debugging doesn't release these entries, so that memory can only ever be released by restarting Lucee
this could be done via by addding a resetDebuggerPool() function
https://github.com/lucee/Lucee/blob/5.3/core/src/main/java/lucee/runtime/config/ConfigWebImpl.java#L418
public DebuggerPool resetDebuggerPool() { Resource dir = getConfigDir().getRealResource("debugger"); dir.mkdirs(); debuggerPool = new DebuggerPool(dir); }
https://github.com/lucee/Lucee/blob/5.3/core/src/main/java/lucee/runtime/debug/DebuggerPool.java