logoalt Hacker News

abengatoday at 9:46 AM1 replyview on HN

Is there a straightforward way to have one-process-per tab in browsers without using significant amounts (O(n_tabs)) of memory?


Replies

samustoday at 10:25 AM

There is no justification for that IMHO. The program text only needs to be in memory once. However, each process probably has its own instance of the JS engine, together with the website's heap data and the JIT-compiled code objects. That adds up.

show 1 reply