不调用Thread#join可以吗?

发布于 2024-12-11 22:41:42 字数 305 浏览 0 评论 0原文

不调用Thread#join可以吗?在这种情况下,我不在乎线程是否崩溃 - 我只希望 Unicorn 继续处理。

class MyMiddleware
  def initialize(app)
    @app = app
  end

  def call(env)
    t = Thread.new { sleep 1 }
    t.join # is it ok if I skip this?
    @app.call env
  end
end

我会得到“僵尸线程”或类似的东西吗?

Is it OK not to call Thread#join? In this case, I don't care if the thread blows up - I just want Unicorn to keep processing.

class MyMiddleware
  def initialize(app)
    @app = app
  end

  def call(env)
    t = Thread.new { sleep 1 }
    t.join # is it ok if I skip this?
    @app.call env
  end
end

Will I get "zombie threads" or something like that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

奈何桥上唱咆哮 2024-12-18 22:41:43

不调用 join 是完全可以的 - 事实上,多线程代码通常根本不需要 join。仅当您需要阻塞直到新线程完成时,才应调用 join

你不会得到“僵尸”线程。新线程将运行直到完成,然后为您清理自身。

It's perfectly fine to not call join - in fact, join is often not needed at all with multithreaded code. You should only call join if you need to block until the new thread completes.

You won't get a "zombie" thread. The new thread will run until completion, then clean itself up for you.

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