Tagged Questions
The queue-table tag has no wiki summary.
5
votes
7answers
2k views
Working out the SQL to query a priority queue table
I am implementing a small queue to handle which process gets to run first. I am using a table in a database to do this. Here is the structure of the table (I'm mocking it up in SQLite):
...
3
votes
4answers
1k views
Queue using table
I need to implement a queue using table.
The business requirement is to have a single queue which will be accessed by 5-10 boxes to get the next job/jobs. There will not be more than 5000 jobs per ...