These are the only ones I can think of:
- One crashes, the other can step in to handle the requests while another process starts up.
- Zero downtime deploy: You kill one process, the other keeps taking requests as the new code is started up in a new process. (However, if you have load balancing, it no longer seems necessary since you have multiple machines.)
I couldn't think of any other benefits. Assuming I have non-blocking code and each process consumes little memory, would there be any benefits to increasing the number of processes on a single core machine?