I have been reading up to try to make sense of memory leaks in browsers, esp. IE. I understand that the leaks are caused by a mismatch in garbage collection algorithms between the Javascript engine and the DOM object tree, and will persist past. What I don't understand is why (according to some statements in the articles I'm reading) the memory is not reclaimed after the page is unloaded by the browser. Navigating away from a webpage should put all the DOM and javascript objects out of scope at that point, shouldn't it?
|
|
|||
|
|
|
The best thing I ever read about Javascript memory leaks was written by Doulgas Crockford. To answer your question, yes, the browser absolutely should unload all the objects (and most importantly, event handlers) at the appropriate time. If it did, it wouldnt have leaks :) |
||
|
|
|
|
You don't have to make sense of them -- they are bugs in broswers and being fixed from versions to versions. |
||
|
|
