Hacker News new | ask | show | jobs
by scns 1544 days ago
Conurrency instead of parallelism.
1 comments

No amount of concurrency on a single core can equal the performance of multiple cores.
That is why you deploy a process per core, with affinity so that it doesn't jump around.
You can run more than one unikernel per machine. That's why things like KVM or Bhyve are targets instead of just bare metal.