You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
# queue_classic
2
-
A simple, efficient worker queue for Ruby & PostgreSQL
2
+
A simple, efficient worker queue for Ruby & PostgreSQL.
3
+
4
+
Why this over something like Resque. Two reasons:
5
+
6
+
1. Your jobs can be equeued in the same transaction as other modifications to the database, and will only be processed when everything is commited. This is a hard pattern to develop around for queues done outside your database
7
+
2. Less things to run, if you don't already have Redis or a dedicated queue in your stack.
0 commit comments