工人设计模式

发布于 2024-10-16 18:19:02 字数 1435 浏览 2 评论 0原文

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

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

发布评论

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

评论(2

眼眸 2024-10-23 18:19:02

您可能正在寻找 工作线程模式,您可以使用队列来安排要由工作线程“离线”处理的任务。
一些解决方案将使用工作线程池而不是单个线程,通过利用并行化来实现性能提升。

It could be that you are after a worker thread pattern, where you use a queue to schedule tasks that you want to be processed "offline" by a worker thread.
Some solutions will use a pool of worker threads instead of single thread to achieve performance gains by utilising paralelisation.

无妨# 2024-10-23 18:19:02

我想到了类似 MapReduce 的东西。可以在工作节点上并行执行多个任务。

编辑:正如@larsmans提到的,这被称为 Master/工人模式。

Something like MapReduce comes to mind. Where multiple tasks can be performed in parallel on worker nodes.

Edit: As @larsmans mentioned, this is known as the Master/Worker pattern.

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