有没有办法在 PHP 中跟踪 garbe 收集器活动?
我想知道 PHP5.3 是否有一种方法可以像 Java 中那样使用 -verbose:gc
命令行来跟踪垃圾收集器活动。
我试图了解收集的频率和时间。
我对花在收集上的时间也很感兴趣。
I would like to know if there is a way with PHP5.3 to trace the garbage collector activity like in Java with -verbose:gc
command line.
I try to know how often and when the collections occurs.
I'm also interesting about the time spent doing the collections.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您可以激活 垃圾收集器基准测试,使用 <代码>DGC_BENCH=1 标志。您将获得如下统计数据:
这不是真正的跟踪,但这是我能找到的唯一东西。
It seems that you can activate Garbage Collector benchmarking, recompiling PHP with the
DGC_BENCH=1
flag. You'll obtain statistics like these:It's not a real trace, but that's the only thing I could find.