Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an application hosted on AppHarbor that is visited a few times a day with a light load.

The performance experience is a SLOW first page load as the dormant worker process wakes up. Subsequent page loads are fast.

I want to reduce the amount of time for the initial load. Will buying additional instances solve this issue, or should I look towards a dedicated host

share|improve this question

2 Answers

up vote 17 down vote accepted

You app pool will be spun down after 20 minutes of inactivity, this is standard IIS behaviour. You can use services like Pingdom and StillAlive to generate requests for you site if it doesn't have very many visitors.

share|improve this answer
We now recommend upgrading to a paid plan (Catamaran or Yacht) where workers do not idle out due to inactivity. Apps can also be scaled vertically to further improve performance - there are more details in this blog post blog.appharbor.com/2013/03/13/… – runesoerensen May 1 at 1:12

The way I do it, is have something like this running locally: https://github.com/haf/Requester

It just queries the web app every nth second and keeps it in memory. It's a hack, but it works and the problems go away when the app becomes more popular. ^^

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.