0

I don't have 14 firefox opened but task managers showing "14":

enter image description here

What does this numbers in brackets mean?

4
  • Click the reveal arrow > and see...
    – Tetsujin
    Commented Jan 16, 2023 at 16:31
  • @Tetsujin It shows 14 Firefox(s), still I don't get it.
    – Ahmed J
    Commented Jan 16, 2023 at 16:47
  • I don't know how much detail you get in that view, but it will be one instance per tab [or some of them may be supporting instances for media etc]
    – Tetsujin
    Commented Jan 16, 2023 at 16:49
  • @Tetsujin, even with 1 tab (no website) you'll get a good 8 processes running. Those are browser system processes, and sometimes browser add-ons/extensions running in the background Commented Jan 16, 2023 at 16:51

2 Answers 2

2

Many modern applications can use multiple "processes" to separate and segregate tasks that they need to perform.

The do this for multiple reasons

  • Performance. They can achieve more work than a single process. For example one process can be rendering the page on screen while another is decoding images, downloading things, or generally handling network communications. All of these can happen independently and at the same time rather than using a single process that can only do one thing at a time.
  • Reliability. If something goes wrong in one process then only that process might crash. The "host" process can then simply reload that one process and start it again. A single tab crashing won't take down the whole browser.
  • Security. Processes can be sandboxed from each other and sensitive information in one process is kept away from all other processes, only information like images and network data is shared when needed.

The "(14)" is how many processes Firefox is using.

If you want to learn more about how Firefox does it you can see their Electrolysis Web page which describes their efforts to convert their browser engine to using multiple processes.

2
  • "...you can see their Electrolysis Web page which" Which what, sir?
    – Run5k
    Commented Jan 16, 2023 at 18:59
  • @Run5k whoops, I got distracted by shiny objects and forgot to finish my sentence.
    – Mokubai
    Commented Jan 16, 2023 at 19:16
0

Firefox (like any program, but especially browsers) do a lot of stuff in the background for a webpage to load, so each process going on inside of Firefox is a separate process showing in Task Manager.

For a specific breakdown of the 14 processes, you can open Firefox's own Task Manager (Menu > More Tools > Task Manager, or the Shift+Esc keyboard shortcut), and it will list you each process and what it is: enter image description here

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .