up vote 3 down vote favorite
share [g+] share [fb]

I have written an app using dojo that allocates a lot of data during its lifetime. Is there a way I can ensure that all the memory has been released when I am done?

Is there a method like dojo.data.destroyAllStores() that I can use with the <body onunload> tag?

Thanks.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You're considering using "onunload", so I think you want to free memory when users are leaving the page.

Javascript objects are not shared from one page to another, leaving the HTML page should probably cause your browser to clear the associated memory (your browser has a javascript GC).

Unless you're creating memory leaks by connecting DOM & javascript objects (circular references that won't be cleared by DOM and JS GCs). But that's another problem.

More details on DOM/JS memory leaks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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