NodeJS集群背后的算法是什么?

What is the algorithm behind NodeJS cluster?

头部是不言自明的:)

Node 支持进程集群 (documentation)。但是在文档中我没有看到它使用什么算法将工作分配给工人。

是循环赛吗? PM2 使用循环 afaik。

根据文档的 How It Works 部分,提到集群在大多数平台上默认使用 round-robin(Windows 除外).

您可能还想查看 cluster.schedulingPolicy 以获取可用策略列表。