When I put some jobs to kue
and then I restart redis
then queued jobs disappear. I assume that this is normal behavior but I was wondering if there is a way to keep queued jobs after redis
restart? My app requires to have all jobs processed so I need one function/method to add job to queue that will guarantee that job is actually added to the queue and it will remain there until processed...
So is there any mechanism for this inkue
or maybe in other job queueing library
for node? Or I have to handle it on my own by storng each job in DB and then add jobs from db to kue?