Hi,
I'm using Firefox ESR 24.3.0 as a standard browser for my GWT (SmartGWT) application.
During my testing, I find application have slow response after repeat a feature for 15 minutes. And per checking by Firebug DOM tab, I find particular global variable start with isc_XXXXXX (which is SmartGWT objects) accumulate. But per checking that all accumulated isc_ object is null but still accumulated in Firefox's memory. So my question is
- Does null javascript objects mean the object is already ready for GC in FireFox?
- How can I clean up the null javascript objects in Firefox?
- If unfortunately the null javascript objects is not ready for GC due to some association with other non-null object, How can I find that association and the objects from Firebug (or other debug tools in FF)?
Thx in advanced