Skip to content

Commit 8b416ca

Browse files
authored
Update README.md
1 parent 482e640 commit 8b416ca

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# 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.
38

49
[![CircleCI](https://circleci.com/gh/QueueClassic/queue_classic/tree/master.svg?style=svg)](https://circleci.com/gh/QueueClassic/queue_classic/tree/master)
510

@@ -11,9 +16,15 @@ You can always find the latest and previous releases here:
1116

1217
https://github.com/QueueClassic/queue_classic/releases
1318

14-
## Alternative PostgreSQL adapter
19+
## Other related projects
20+
21+
If you're interested in this project, you might also want to checkout:
22+
23+
* [Que](https://github.com/que-rb/que)
24+
* [GoodJob](https://github.com/bensheldon/good_job)
25+
* [Delayed Job](https://github.com/collectiveidea/delayed_job)
1526

16-
You may also be interested in [GoodJob](https://github.com/bensheldon/good_job), which is a recent release inspired by Queue Classic.
27+
For a list of other queues (which may or may not be Postgres backed), checkout - https://edgeapi.rubyonrails.org/classes/ActiveJob/QueueAdapters.html
1728

1829
## What is queue_classic?
1930

0 commit comments

Comments
 (0)