apc_add和apc_store之间的区别?

Ale*_*lex 7 php caching apc

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

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

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

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

为什么有两个用法定义,一个是returs,一个是返回数组?

Jan*_*aek 8

所以文档说apc_store Cache a variable in the data store和apc_add一样Caches a variable in the data store, only if it's not already stored..注意最后一部分 - "只有它尚未存储.所以apc_store只是覆盖已经存储的现有值.

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

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