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.
着眼于使用 php 和操作码缓存创建我的第一个 Web 应用程序。
我模糊地理解为什么它在理论上是有益的。
但是,在实践中 - apc 如何处理从会话特定变量编译的操作码?如果缓存了一个页面(比如 somesharedpage.php),如何处理和处理其中的变量(每个用户可能不同)?
简单地说,APC 使用代码而不是数据,因为数据不包含任何操作码。
什么时候应该将数据添加到 apc?
理想情况下,您希望使用 等缓存的数据是apc_fetch()需要apd_store()一些处理时间才能生成的值,而不是简单的“我所有的全局变量”。
apc_fetch()
apd_store()