Hacker News new | ask | show | jobs
by elietoubi 4991 days ago
The reason why heroku is so slow when you have only 1 dyno is that it idles after a couple of minutes of inactivity on your site. The trick is to use new relic on heroku. New relic shows your performance of your site (for free) and pings your server every minute ... that should prevent it to idle

More info here: http://stackoverflow.com/questions/5480337/easy-way-to-preve...

1 comments

thanks thats a great solution