What do you use to monitor jscript memory usage in Internet Explorer

We are debugging the GWT application. It works fine in Firefox, in IE6.0 it starts working fine, but after a while it kneels and starts to scan. After some tests, we suspect some memory problems (too much memory, memory leaks, etc.), In addition, using taskmanager and processxp to increase memory usage:) .... ¿Do you recommend any other memory monitoring tool ?

How to jprobe for jscript? :)

+6
javascript memory-management internet-explorer gwt
source share
4 answers

I already answered a similar question about detecting a JS memory leak in IE Here

these are tools using

+2
source share
+1
source share

I used Drip with good results.

+1
source share

At the moment I am using "sIEve": http://home.wanadoo.nl/jsrosman/

At the moment, I use it to find out how many bytes IE allocates (and cancels) in response to user activity (the user opens a menu, GWT runs some javascript, IE allocates memory).

I also tried these other tools, but I don't have any conclusions yet http://blogs.msdn.com/gpde/pages/javascript-memory-leak-detector.aspx http://www.microsoft.com/downloadS/details .aspx? FamilyID = 28bd5941-c458-46f1-b24d-f60151d875a3 & displaylang = en

0
source share

All Articles