APC(PHP 缓存)的 apc.php 统计页面显示错误的文件大小
当我转到 apc.php 统计页面并单击“系统缓存条目”或“用户缓存条目”时,显示的文件大小大约比实际大小大十倍。这是计算文件大小的错误吗?
When I go to the apc.php stats page and click on "System Cache Entries" or "User Cache Entries," the sizes shown for the files are about ten times larger than they actually are. Is this an error in how the file sizes are calculated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于系统缓存条目,显示的大小是字节码的大小,而不是 PHP 脚本文件的大小。对于用户缓存条目,显示的大小是保存该值的 zval 结构的大小。
For System Cache Entries, the size shown is the size of bytecode, not of the PHP script file. For User Cache Entries, the size shown is that of the zval structure that holds the value.