NodeJS中的父子进程

发布于 2024-11-04 05:31:13 字数 320 浏览 0 评论 0原文

如何为下面的简单 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冰雪之触 2024-11-11 05:31:13

查看 子进程 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.

Smile简单爱 2024-11-11 05:31:13

您需要使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文