Y
Hacker News
new
|
ask
|
show
|
jobs
by
abenga
165 days ago
Is there a straightforward way to have one-process-per tab in browsers without using significant amounts (O(n_tabs)) of memory?
1 comments
samus
165 days ago
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.
link
abenga
164 days ago
I'd very much like a crash in one tab not to kill other tabs. And having per tab sandboxing would be more secure, no?
link
samus
164 days ago
What do you mean? All these features are provided by process per tab.
link