logoalt Hacker News

rpdillonyesterday at 6:15 PM2 repliesview on HN

Sibling comment called it: these are dynamic libs used by the desktop, so the incremental RAM usage is low. That's a good approach! Makes me wonder what the heck MS is doing to get their app to add an incremental gig to memory usage.


Replies

inigyoutoday at 2:56 AM

DLLs are hopefully shared. But when you run a JavaScript interpreter and load some JavaScript library, in several different processes, that is not shared. Each process gets an independent copy of the library because from the kernel's perspective it's data.

show 1 reply
cdud3yesterday at 6:51 PM

Correct.