apc_add 和 apc_store 之间的区别?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此文档说 apc_store 会
在数据存储中缓存变量
,而 apc_add 会在数据存储中缓存变量,前提是该变量尚未存储。
。请注意最后一部分 - “仅当尚未存储时。因此 apc_store 只是覆盖已存储的现有值。第二部分是一个有错误的数组。
So the docs say that apc_store does
Cache a variable in the data store
and apc_add doesCaches 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.