0

What way or which profiler tool I should use to see a specific web page's memory consumption?

Does it make a difference if it belongs to a TAB in an individual browser window?

Thanks

pencilCake
  • 51,323
  • 85
  • 226
  • 363
  • not a dupe, but related: http://stackoverflow.com/questions/2530228/jquery-or-javascript-to-find-memory-usage-of-page/ – Midhat May 03 '10 at 07:16

3 Answers3

1

In chrome every tab is a separate process, so there you can just compare the memory consumption of an empty tab against the memory consumption of a tab loaded with the page in question.

For other browsers this does not work of course. IE9 will have tabs in seperate process too I think though.

ntziolis
  • 10,091
  • 1
  • 34
  • 50
1

Each browser is going to be different.

Google Chrome, for instance, has a Task Manager, SHIFT+ESC, that will itemize each tab, and each tab is actually a separate process in Windows Task Manager.

Sky Sanders
  • 36,396
  • 8
  • 69
  • 90
0

As far as I know, only Chrome supports this directly. Open a tab to about:memory and you can see the memory usage of each tab.

developmentalinsanity
  • 6,109
  • 2
  • 22
  • 18