I have my app in node js
and i want them to be executed on its scheduled time
But the problem is in between that if my server crash/stop/restart then those scheduled jobs are not persisted and are not executed.
Also, all my jobs are scheduled and executed using only single process, but i want multiple process to do the job.
I want all my jobs to be persisted and executed even if my node server restarted or better its get executed even if my server is not running.
Agenda - using mongoDB, which i don't want to use.
Node-scheduler - not able to persist cron jobs
var ctab = require('crontab');
ctab.load(function(err, crontab) {
var job = crontab.create('* * * * * *');
var jobs = crontab.jobs();
crontab.save(function(err, crontab) {
});
});