The Database As Queue Anti-Pattern “Why is it an anti-pattern? 1) polling either short interval hammers the db, or long interval makes system irresponsive. 2) polling queries should be fast, need to implement index, which makes inserts slow, contradiction. 3) clear records to make the table efficient, usually deletes are slow 4) sharing a database […]