NodeJS中的父子进程
如何为下面的简单 C 代码创建等效的 NodeJS?
int main(int argc, char *argv[]) {
if (fork()) {
printf("I'm parent %d", getpid());
printf("From parent : %d", 1+1);
} else {
printf("I'm child %d", getpid());
printf("From child : %d", 10+20);
}
return 0;
}
How to Create NodeJS equivalent for the below simple C code?
int main(int argc, char *argv[]) {
if (fork()) {
printf("I'm parent %d", getpid());
printf("From parent : %d", 1+1);
} else {
printf("I'm child %d", getpid());
printf("From child : %d", 10+20);
}
return 0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 子进程 nodejs.org/docs/v0.4.7/api/index.html" rel="nofollow">NodeJS 文档。然后查看 Forever 作为如何使用它们的示例。
Check out Child Processes in the NodeJS docs. Then check out Forever as an example of how to use them.
您需要使用 Web Workers API。这是在服务器中生成后台进程的标准。
对于 Nodejs,我们有以下库>
https://github.com/cramforce/node-worker
You need to use the Web Workers API. It is the standard to spawn background processes in server.
For Nodejs, we have the following library >
https://github.com/cramforce/node-worker