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 应用程序,使用 PHP 5.5+ OpCache 和 Redis 作为持久存储。现在我使用includeandfile_exists()作为可能执行统计调用的两个调用。
include
file_exists()
使用像ocp.php这样的脚本,我可以检查文件的命中/未命中。然而,我想知道,我如何检查是否有任何统计调用(比如file_exists())以及它们是在何时何地进行的?
我想以这种方式分析我的部署,以调整任何可能的 php 配置以完全在内存中运行应用程序。