如何使用Python工作池处理并发变量写入

发布于 2024-10-31 04:33:16 字数 176 浏览 2 评论 0原文

有没有一种特殊的方法可以使用Python的workerpool来写入特定作业之外的变量。

举例来说,您有一个名为 DownloadJob 的作业,它会下载一些文件并递增计数器。处理此计数器变量递增的最佳方法是什么?我是否需要在写入计数器之前以某种方式锁定计数器,或者这是Python自动执行的操作?

谢谢!

Is there a special way to use Python's workerpool to write to a variable that is outside a particular job.

Let's say, for example, you have a job called DownloadJob which downloads some file and increments a counter. What is the best way to handle the incrementing of this counter variable? Do I need to somehow lock the counter before writing to it or is this something that Python does automatically?

Thanks!

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

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

发布评论

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

评论(1

ペ泪落弦音 2024-11-07 04:33:16

您可以使用threading.Lock进行互斥。文档对它们非常清楚: http://docs.python.org/library /threading.html#lock-objects

干杯!

You can use threading.Lock for mutual exclusion. The documentation is pretty clear about them: http://docs.python.org/library/threading.html#lock-objects

Cheers!

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