哪种线程实践在 90% 的时间里都是好的?

发布于 2024-10-11 09:42:55 字数 82 浏览 1 评论 0原文

在使用多核线程时,哪些做法在 90% 的时间内都是好的?

就我个人而言,我所做的就是共享不可变类并将数据传递(复制)到队列到目标线程。

What practice or practices are good 90% of the time when working with threading with multiple cores?

Personally all i have done was share immutable classes and pass (copy) data to a queue to the destine thread.

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

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

发布评论

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

评论(1

半窗疏影 2024-10-18 09:42:55

这是非常模糊的 - 但有一些我始终遵循的基本规则:

  1. 在实现线程之前确保它有意义 在设计线程
  2. 时关注算法,而不是单独的代码行
  3. 尽可能最高级别的线程 优先
  4. 选择不可变数据
  5. 同步适当的数据访问 优先
  6. 选择高级线程库而不是低级手写线程代码
  7. 测量(确保 1. 为真!)

This is very vague - but there are a few basic precepts I'd always follow:

  1. Make sure threading makes sense before you implement it
  2. Focus on algorithms, not individual lines of code when designing for threading
  3. Thread at the highest level possible
  4. Prefer immutable data
  5. Synchronize data access appropriately
  6. Prefer high level threading libraries over low level, hand written threading code
  7. Measure (make sure 1. was true!)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文