I am testing a google app engine app. I just deployed to the hosted server and opened my launch page a few times. Because my app has no users, most times I load the page is a fresh launch for the app. I look at my dashboard and see that my launch page has a very 开发者_如何学Gohigh Avg CPU per Request. Is this because it is putting the costs of launching the entire app on the launch page or do I need to check my launch page for CPU culprits?
Yes - loading requests will simply take longer, and that'll be reflected in your averages. If you check the logs, there will be a message to that effect against any requests that required starting a new runtime.
精彩评论