搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

How to protect yourself from pages that take up huge amounts of memory?

  • 2 个回答
  • 1 人有此问题
  • 111 次查看
  • 最后回复者为 zeroknight

more options

I often see that some pages take up too much memory. This critically affects the performance of my laptop with 8 GB of memory. However, I was unable to reproduce this behaviour. Now I have caught two web pages.

https://linuxhandbook.com/sort-top-command/ 

and https://www.tutorialspoint.com/how-to-find-number-of-ram-slots-in-linux The first page quickly takes up 1-2GB and continues to drain memory. The maximum usage was 7 GB on a laptop with 16 GB of memory. This behaviour is the same in Firefox and Chrome. The second page quickly takes up 2GB, which is very noticeable on 8GB laptops. Why do these pages take up so much memory? Most importantly, how can you protect yourself from such an unexpected memory consumption?

I often see that some pages take up too much memory. This critically affects the performance of my laptop with 8 GB of memory. However, I was unable to reproduce this behaviour. Now I have caught two web pages. https://linuxhandbook.com/sort-top-command/ and https://www.tutorialspoint.com/how-to-find-number-of-ram-slots-in-linux The first page quickly takes up 1-2GB and continues to drain memory. The maximum usage was 7 GB on a laptop with 16 GB of memory. This behaviour is the same in Firefox and Chrome. The second page quickly takes up 2GB, which is very noticeable on 8GB laptops. Why do these pages take up so much memory? Most importantly, how can you protect yourself from such an unexpected memory consumption?

被采纳的解决方案

The majority of the resource consumption in your examples is due to ads and trackers, the first one has 32 iframes which all load in separate processes. With Strict Tracking Protection enabled and uBlock Origin installed, that drops to just two.

Other ways to manage memory:

  1. Enable automatic tab unloading (disabled by default on Linux) by changing browser.tabs.unloadOnLowMemory to true in about:config.
  2. Reduce the number of processes per site by changing dom.ipc.processCount.webIsolated to 1.
  3. Install a system monitor utility so you can see memory usage at all times.
  4. Enable SysRq process signalling so you can kill the most memory-consuming process by pressing RightAlt+SysRq+F.
定位到答案原位置 👍 2

所有回复 (2)

more options

You can check the about:memory and about:processes pages for info about all processes. See also the about:unloads page for info about the tabs.

more options

选择的解决方案

The majority of the resource consumption in your examples is due to ads and trackers, the first one has 32 iframes which all load in separate processes. With Strict Tracking Protection enabled and uBlock Origin installed, that drops to just two.

Other ways to manage memory:

  1. Enable automatic tab unloading (disabled by default on Linux) by changing browser.tabs.unloadOnLowMemory to true in about:config.
  2. Reduce the number of processes per site by changing dom.ipc.processCount.webIsolated to 1.
  3. Install a system monitor utility so you can see memory usage at all times.
  4. Enable SysRq process signalling so you can kill the most memory-consuming process by pressing RightAlt+SysRq+F.