Heroku and node-cron?

后端 未结 3 1083
隐瞒了意图╮
隐瞒了意图╮ 2021-02-02 02:21

So I know Heroku\'s free dynos \'wind down\' when there isn\'t any traffic to them– how would this effect the cron jobs that I\'ve implemented using the node-cron module?

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-02 03:23

    Probably they won't work as you expect in 100%. I mean, if cron execution will be scheduled at the time when your server would be offline, then it won't work. Hobby Dynos on Heroku power-up only at HTTP request and shutdown after some period of inactivity, they won't boot because of cron.

提交回复
热议问题