TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Chrome 14 consumes more memory than Firefox 7

7 点作者 arpitnext超过 13 年前

3 条评论

rkalla超过 13 年前
Chrome uses a process-per-tab model, so each tab you have open is its own running rendering engine/browser instance.<p>That is why you can have tabs crash and be closed without taking down the entire browser.<p>Firefox shares more state internally between tabs and as a result, a misbehaving tab can take the entire browser down.<p>All that being said, the Firefox team has been <i>super</i> aggressive as stomping out memory usage in the 6.0 and 7.0 releases and the work shows, they are doing a great job tuning Firefox.<p>Net-net, we all win.
sgentle超过 13 年前
"Then I opened Windows Task Manager and noted down the Memory consumption of all chrome.exe processes"<p>This approach won't yield an accurate result because of memory being shared between processes. As an example, 12 chrome processes might appear to be using 50mb each, but if half of that is from shared libraries, then the actual total is 325mb, not 600.
acg超过 13 年前
Is this surprising since chrome uses a sandbox model, It is firefox's apparent memory leaking that's the worry.