On Thu, Aug 26, 2010 at 11:30 AM, marcel <[email protected]> wrote: > Also, it often takes 10-20 seconds to get a page to load after a > period of inactivity, compared to lightning speed for the production > app.
I can't find it in the docs, but I'm pretty sure that your dyno will "spin down", or "go to sleep", or whatever dynos do when they are not being used after a certain period of time without any requests. The reason you see that on staging and not production is likely because there are no requests coming into staging for long enough that your staging dyno rests its inactive head. The 10 second period is the dyno "waking up" and if you keep QAing on staging over the next few minutes you shouldn't see the same delay. Dan -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
