#Job queue in NestJS based on local persistence?
1 messages · Page 1 of 1 (latest)
I don't know of any out of the box solution, but if you don't need to support distributed queues with competing consumers, it's pretty straightforward to implement a database backed queue.
Research about implementations of the Outbox pattern to get the idea. It's not solving the same issue, but the way you insert/remove messges (jobs) is the same.