vote up 6 vote down star

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?

flag

71% accept rate
exactly why they're leaks :) The memory can't be reclaimed. – Ian Elliott Jul 3 at 5:13

2 Answers

vote up 1 vote down

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 :)

link|flag
vote up 1 vote down

You don't have to make sense of them -- they are bugs in broswers and being fixed from versions to versions.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.