Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move Bree to comparison table #1388

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 18 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,24 @@
Since there are a few job queue solutions, here a table comparing them to help you use the one that
better suits your needs.

Agenda is great if you need a MongoDB job scheduler, but try **[Bree](https://jobscheduler.net)** if you need something simpler (built by a previous maintainer).

| Feature | Bull | Bee | Agenda |
| :--------------- | :-------------: | :------: | :----: |
| Backend | redis | redis | mongo |
| Priorities | ✓ | | ✓ |
| Concurrency | ✓ | ✓ | ✓ |
| Delayed jobs | ✓ | | ✓ |
| Global events | ✓ | | |
| Rate Limiter | ✓ | | |
| Pause/Resume | ✓ | | |
| Sandboxed worker | ✓ | | |
| Repeatable jobs | ✓ | | ✓ |
| Atomic ops | ✓ | ✓ | |
| Persistence | ✓ | ✓ | ✓ |
| UI | ✓ | | ✓ |
| REST API | | | ✓ |
| Optimized for | Jobs / Messages | Messages | Jobs |

_Kudos for making the comparison chart goes to [Bull](https://www.npmjs.com/package/bull#feature-comparison) maintainers._
| Feature | Bull | Bee | Bree | Agenda |
| :--------------- | :-------------: | :------: | :------: | :----: |
| Backend | redis | redis | | mongo |
| Priorities | ✓ | | | ✓ |
| Concurrency | ✓ | ✓ | | ✓ |
| Delayed jobs | ✓ | | | ✓ |
| Global events | ✓ | | | |
| Rate Limiter | ✓ | | | |
| Pause/Resume | ✓ | | | |
| Sandboxed worker | ✓ | | | |
| Repeatable jobs | ✓ | | | ✓ |
| Atomic ops | ✓ | ✓ | | |
| Persistence | ✓ | ✓ | | ✓ |
| UI | ✓ | | | ✓ |
| REST API | | | | ✓ |
| Optimized for | Jobs / Messages | Messages | Jobs | Jobs |

_Kudos for making the original comparison chart goes to [Bull](https://www.npmjs.com/package/bull#feature-comparison) maintainers._

# Installation

Expand Down