Hacker News new | ask | show | jobs
by m00x 1344 days ago
But then you need twice the initial app memory. This can be substantial for larger apps.

There are definitely benefits of using multiple cores at once on a single app.

2 comments

Sure. not an excuse to not benchmark it that way - if it struggles due to memory it'll show up after all.
Copy on write fork mitigates some of that.
There was a recent post about a new Ruby server implementation. The author pointed out that for interpreted languages, forking quickly deviates and gains very little benefit from copy-on-write. However! Pre-warming the first instance and then forking afterwards brought the memory savings back down to compiled levels. No real point to my comment except that it was new knowledge to me, and that efficiency of forking really depends on the implementation of what/when you're forking.
It's not clear what OP is saying. I assumed multiple container instances, but even then, CoW isn't as efficient.