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

Patch 2 #1556

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Patch 2 #1556

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ end_of_line=lf
trim_trailing_whitespace=true
insert_final_newline=true
indent_style=space
indent_size=2
indent_size=2 système date heure antenne
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