With PHP 5.3 having APC installed is not needed as PHP 5.3 already has
improvements that APC does resolve in it.
这个陈述真的准确吗?安装APC(Alternative PHP Cache)是否可以通过PHP 5.3提高性能?
我对此声明提出质疑,另一位管理员为此辩护:
the official word we have from our upper tier administrators is to
avoid APC as PHP 5.3+ has improved from prevIoUs versions such that
APC can potentially become redundant or even conflicting
我在这里被抛到或者这个陈述有效吗?与Hostgator讨论了在Level 7 VPS上安装APC的问题.
>操作码缓存(简而言之 – 将已编译的PHP代码保存到内存中以便重用/性能)
>数据存储(为PHP代码提供API以持久存储和从内存中检索数据)
PHP 5.3 release虽然是一般的重要版本,但本身没有这样的功能.
即将到来的PHP 5.5 is planned to integrate Zend Optimizer用于操作码缓存(但没有数据存储).
在特定情况下,可能会有配置,安全性,资源消耗和其他考虑因素来建议APC.
然而,暗示PHP 5.3以某种方式具有替换功能并且不需要操作码缓存(APC或其他)显然是不正确的.
So the very first thing you should do,if you haven’t already,is to install opcode cache.
Rasmus Lerdorf (creator of PHP)
07003