Hacker News new | ask | show | jobs
by pistoriusp 4 days ago
Why not just run a vm?
1 comments

Far more overhead.
In particular (as I just learned when looking it up), WASM can dynamically allocate host memory with the memory.grow instruction, so you don't have to waste a huge chunk of statically allocated memory per VM: https://developer.mozilla.org/en-US/docs/WebAssembly/Referen...

Although... it doesn't say anything about releasing memory back to the host (I don't see a memory.shrink instruction) so maybe it's not all that helpful? Will WASM applications continue hogging the maximum amount of memory they've ever used until they're restarted?

A VM could release memory back to the host using memory ballooning, but this has to be managed manually somehow, at least with QEMU.