如何对 Rails 应用程序的启动进行基准测试?
我将 Rails 应用程序放在 Heroku 上,现在发现它的启动时间非常慢。我的意思是,当我第一次在 Heroku 上(使用浏览器)访问我的网站时,显示索引页面需要太多时间,但是当我随后浏览网站时,请求需要正常时间。
那么我如何查看这个“第一个”请求花费了这么多时间呢?
I put my Rails application on Heroku, and I see now that it has a very slow startup time. What I mean by this is that, when I first go to my website on Heroku (with a browser), it takes too much time to display the index page, but when I browse the website afterwards, the requests take normal time.
So how do I see what takes so much time on this "first" request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是正常的,因为您没有为您的测功机付费,并且第一个测功机将在一定时间后闲置。
http://devcenter.heroku.com/articles/dynos
如果您想查看发生了什么,可以使用命令(从您的安装目录)
它将显示您服务器的日志。
在我的暂存环境中,如果我现在查询(当我的测功机空闲时),我可以在日志中看到
=>完成我的第一个请求大约花了 20 秒。
it is normal, because you are not paying for your dyno and the first dyno will be idle out after a certain amount of time.
http://devcenter.heroku.com/articles/dynos
If you want to see what is going on, you can use the command (from you installation directory)
It will show the logs of your server.
In my staging enviroment, if I query now (when my dyno is idling) I can see in the logs
=> it took about 20 second to fullfill my first request.