You Don't Need a Job Queue, Postgres Already Has SKIP LOCKED
Postgres can run a reliable background job queue, and the key is one clause: FOR UPDATE SKIP LOCKED. In this post, you'll build a queue with retries and concurrent workers on Prisma Postgres, a manage