Tagged Questions

9
votes
4answers
2k views

Best way to use a DB table as a message/job queue

I have a databases table with ~50K rows in it, each row represents a job that need to be done. I have a program that extracts a job from the DB, does the job and puts the result back in the db. (this ...