I've got this tournament hosting website that has to keep track of tournament start times and round limits. Currently I do this by using Meteor.setIntervals. The biggest problem with this is that every time I have to redeploy I lose all the timers... (kind of ruins the benefit of hot code pushes). Is there a way to run my timers on something separate that doesn't get killed on deploy?
Asked
Active
Viewed 57 times
0
-
See [Background tasks in Meteor](http://stackoverflow.com/questions/11703010/background-tasks-in-meteor). You'll probably be best off using a dedicated library for this, and the accepted answer mentions a lot of options. – Nick McCurdy Jan 09 '15 at 02:06
-
https://github.com/percolatestudio/meteor-synced-cron what about this package?? – ncubica Jan 09 '15 at 02:12
-
I tried using synced cron. Unfortunately you can only run cron jobs down the the minute so round times and start times will be off by up to 1 minute. I cant set crons to run at a specific second :/ – gbachik Jan 09 '15 at 02:18