调整 PHP Zend 优化器+
我希望在我们的 Zend Server 安装上调整 Zend Optimizer+。有没有任何工具可以显示有关 Zend Optimizer 性能的统计数据?例如,命中和未命中的次数、共享内存的利用率等。
除了 Optimizer+ 配置指令之外,我们还可以在应用程序代码中做些什么来帮助字节码缓存引擎做得更好?
I am looking to tune Zend Optimizer+ on our Zend Server installation. Is there any tool that can show statistics about Zend Optimizer's performance? e.g. number of hits and misses, utilization of shared memory etc.
Apart from Optimizer+ configuration directives, anything else we can do within our application code to help the bytecode caching engine do a better job?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以调用函数 Accelerator_get_status() 并查看结果 - 它将包含有关 O+ 内部状态以及内部发生的情况的一些信息。
您还可以考虑增加 realpath_cache_size - 默认值对于大型应用程序来说太小。
You may call function accelerator_get_status() and see the result - it would contain some information about the O+ internal state and what happens inside.
You may also look into increasing realpath_cache_size - default is too small for big application.
Zend Optimizer 没有太多需要调整的地方。查看:
除此之外,您只能调整通过 Zend 可用的内容服务器用户界面。
对于 Zend Optimizer Plus,您可以更改许多 ini 配置,如
There is not much to tune with Zend Optimizer. Check out:
Apart from this, you can only tweak what is available through the Zend Server UI.
For Zend Optimizer Plus, there is a number of ini configs you can change as explained in