Hacker News new | ask | show | jobs
by jhardcastle 3648 days ago
Don't you think that removing all the extensions, bookmark bars, and extraneous UI cruft will make this browser consume a lot less RAM? Seems logical to me.
2 comments

If your bookmarks bar is using up too much RAM, consider falling back to w3m, lynx, or wget.
You still have the duplicated processes across the different tabs to contend with. That's the real RAM killer.
How much of the overhead is actual overhead though? Operating systems know better than to store multiple identical copies of the same shared library in memory, for example. And it's not like the process-per-tab approach has no benefits - you use more RAM to get increased reliability and security in return.
Chrome specifically runs these processes as duplicate services at the OS level so that when one fails in memory the rest don't.

http://blog.chromium.org/2008/09/google-chrome-memory-usage-...