当源代码更改时,Xcache 无法重新加载 php 操作码
当 php 源代码发生更改时,Xcache 或其他 php 操作码缓存器可以自动重新加载 php 操作码吗?
Can Xcache or other php opcode cachers auto-reload php opcode when php source code has changed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数操作码缓存都有一个配置设置,以确定它们是否应该刷新已更改的脚本的缓存条目。通常,这将被设置为在开发环境中自动发生;但进行检查会产生开销,因此通常在生产环境中禁用它。
xcache有ttl设置,生产环境为0,否则x秒后刷新
Most opcode caches have a configuration setting to determine whether they should refresh their cached entry for a script that has been changed. Typically this would be set to happen automatically in a development environment; but there's an overhead to doing the check, so it's normally disabled in a production environment.
xcache has the ttl setting, 0 for a production environment, else refresh after x seconds