ConcurrentDictionary 和可见性

发布于 2025-01-01 23:57:41 字数 277 浏览 2 评论 0原文

我读到 ConcurrentDictionary 仅在写入时锁定,因此读取是无锁的。

http://blogs.msdn.com/b/pfxteam /archive/2010/01/08/9945809.aspx 对字典的读取是以无锁方式执行的

但是可见性怎么样,当读取是无锁时,它们如何确保这一点?

I have read that ConcurrentDictionary only locks when writing, so the reads are lock free.

http://blogs.msdn.com/b/pfxteam/archive/2010/01/08/9945809.aspx
reads on the dictionary are performed in a lock-free manner

But what about visibility, how do they ensure this when the reads are lock free?

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

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

发布评论

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

评论(1

凑诗 2025-01-08 23:57:41

MemoryBarrier 的使用可确保对象为其他线程“发布”。这不需要锁。

The use of the MemoryBarrier ensures that the objects are 'published' for other threads. This does not require a lock.

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