APC 和 Drupal 基准测试
我将 apc 安装到本地主机上的 Debian。我用 "ab -n 500 -c 10 http://localhost/mydrupalsite" 测试了我的 drupal 站点性能,但我看到“每秒请求数”没有变化。我查看了 php.info,发现 apc 处于活动状态。我还在 php.ini 文件中添加了 extension=apc.so 。我重新启动apache后。
我如何知道我的 apc 安装是否成功? 如果成功,为什么测试结果没有变化?
I install apc to my debian on localhost. I tested my drupal site performance with "ab -n 500 -c 10 http://localhost/mydrupalsite" , but I see that there is no change on "request per second". I looked php.info and apc is active. also I added extension=apc.so to my php.ini file. After I restarted the apache.
How can I understand my apc installation is succesfull?
If it is succesfull, why there is no change on test result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您在服务器上安装 APC 时,它包含一个 apc.php 文件,复制该文件或将该文件符号链接到您的 webroot(在本例中为
http://localhost/apc.php
)。查看此文件将使您深入了解 APC 正在缓存什么(如果有)以及是否存在缓存命中/未命中。您还可以从此文件中清除 APC 缓存。
When you install APC on your server, it contains an apc.php file, copy this file or symlink the file to your webroot (in this case,
http://localhost/apc.php
).Viewing this file will give you insight into what APC is caching, if anything, and if there are cache hits/misses. You can also clear the APC cache from this file.