Search Results

1
vote

Working out the SQL to query a priority queue table

If you want it to be 'concurrent safe' on something like InnoDB do: 1) Add an 'in_progress' field. 2) Turn off AUTOCommit 3) SELECT * FROM queue_manager where in_progress = …