mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-22 23:18:05 +03:00
* 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
5 lines
176 B
SQL
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;
|