Do I need persistent storage for a recurring job?

Hi. I’m looking at hangfire to create a recurring job, doing something simple like updating a local static cache every 5 minute. I am wondering if I would need persistent storage for this? I just need some code to trigger every 5 minute and I can live with the schedule being messed up on server restarts etc. I know there’s a memory storage package available, but do I need any storage at all?

Yes, the storage is for storing state of the “Queues”. Job goes into Queue, Workers pull messages out of the Queue.