有谁知道 xcache 函数是否是原子的?

发布于 2024-11-25 11:42:07 字数 134 浏览 2 评论 0原文

我想知道哪些 xcache 函数是原子的。我知道 xcache_inc() 和 xcache_dec() 都是原子的。我不知道 xcache_get()xcache_unset() 是否是原子的。

I'm wondering which xcache functions are atomic. I know that xcache_inc() and xcache_dec() are both atomic. I dont know if xcache_get() and xcache_unset() are atomic.

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

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

发布评论

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

评论(1

行雁书 2024-12-02 11:42:07

功能列表表示 XCache 支持“原子 get/set/inc/dec”。

所以 get 是原子的,无论这意味着什么。 (这可能只是意味着 get 永远不会返回中间值,这或多或少与原子 set 相同。)

此外,因为 set< /code> 是原子的,我认为 unset 没有理由不是原子的。

The Feature List says that XCache supports "atomic get/set/inc/dec".

So get is atomic, whatever that means. (It probably just means that get never returns an in-between value, which is more or less the same thing as atomic set.)

Also, since set is atomic, I see no reason why unset wouldn't be atomic, too.

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