Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个场景,每次请求我都必须从数据库中获取数据。所以我想到了APC用来缓存变量。但后来发现这APC不再是较新版本的 PHP 的选择。所以我检查了memcahced和APCu。Memcached 不是根据这个选择的。而且我不确定APCu开发人员社区会支持多长时间,因为我不想在代码部署后更改它。
APC
memcahced
APCu
Opcache是替换的APC,但它没有提供任何缓存变量的方法。我很困惑。一点帮助将不胜感激。
Opcache
提前致谢。
Opcache 缓存字节码,而 APCu 是一个简化版的 APC,它只缓存用户区部分(它与旧的 APC 完全兼容,只是不再做字节缓存)。如果您仍然想在本地缓存,APCu 是要走的路,当涉及到这种缓存时,我将自己使用它。
对于更大的跨机器缓存,我还将使用 Memcached。