3

在保持 1 dyno 的同时保持 Heroku 应用程序存活的最佳解决方案是什么?

这是一个非常小的应用程序,但与其等待 20 秒来使测功机栩栩如生,不如每隔 30 分钟左右对我的 Heroku 应用程序执行一次 ping 操作以防止它进入睡眠状态,这将是很棒的,它确实如此每隔一小时。

网络上的一些解决方案建议使用“New Relic”,但我想自己问这个问题,看看是否有一个 2014 年的新答案来解决一个亟待解决的问题。

小信息:我正在运行一个中间人应用程序,在 Heroku 上使用 Puma。

4

1 回答 1

6

I've done this by using NewRelic. In my opinion, it's a win/win because you'll get app monitoring of your site plus keeping the site awake.

Other alternatives would be to write a cron job on a separate machine which pings your site once an hour. This would mean you'd need to have another machine up and alive to do this work, but it's an option.

于 2014-02-26T17:27:13.450 回答