Why do browsers use so much memory? -


firefox 18 tabs open = 1.34gb of memory (~75mb/tab).

got reply on twitter local developer mentioning chrome instance using ~82mb/tab.

what causes web browsers consume memory?

to make more crash-resistant, chrome spawn many copies of full-fledged processes instead of using multi-threading. eats more memory (less things can shared). chrome puts plugins in separate processes (so crash of flash won't bring down whole browser)... other memory consumed... , on.


Comments

Popular posts from this blog

Python __call__ special method practical example -

arrays - jQuery - Retrieve values from HTML elements and return their sum -