apc_add 和 apc_store 之间的区别?

发布于 2024-12-20 10:38:43 字数 381 浏览 1 评论 0原文

我在 PHP 文档中没有看到任何内容:

http://www. php.net/manual/en/function.apc-store.php

http://www.php.net/manual/en/function.apc-add.php

我在这里遗漏了什么吗?我应该什么时候使用每一个?

为什么有两种用法定义,一种返回 true,一种返回数组?

I don't see any in the PHP docs:

http://www.php.net/manual/en/function.apc-store.php

http://www.php.net/manual/en/function.apc-add.php

Am I missing something here? When should I use each one?

And why are there two usage definitions, one returs true and one returns array?

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

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

发布评论

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

评论(1

久而酒知 2024-12-27 10:38:43

因此文档说 apc_store 会在数据存储中缓存变量,而 apc_add 会在数据存储中缓存变量,前提是该变量尚未存储。。请注意最后一部分 - “仅当尚未存储时。因此 apc_store 只是覆盖已存储的现有值。

第二部分是一个有错误的数组。

成功时返回 TRUE,失败时返回 FALSE。第二种语法返回带有错误键的数组。

So the docs say that apc_store does Cache a variable in the data store and apc_add does Caches a variable in the data store, only if it's not already stored.. Notice the last part - "only if it's not already stored. So apc_store simply overwrites existing values already stored.

The second part is a array with errors.

Returns TRUE on success or FALSE on failure. Second syntax returns array with error keys.

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