Files
zkldi_Tachi/db/migrations/20260423120000_job_queue_dequeue_index.sql
T
zk b8a98b581c if it hurts to breathe (open a window) (#58)
* if it hurts to breathe (open a window)

* clocked it.

* must sleep tonight, sorry

* feat: leaderboard now shows #1 if you're #1 even in ties
2026-04-22 22:26:43 +01:00

5 lines
176 B
SQL

-- Fast dequeue of queued (status = 0) jobs ordered by when they are due.
CREATE INDEX job_queue_dequeue_idx
ON job_queue (scheduled_for ASC, created_at ASC)
WHERE status = 0;