mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add justification
This commit is contained in:
parent
afb3d4f9e5
commit
c69dda4988
1 changed files with 7 additions and 0 deletions
|
@ -10,6 +10,13 @@ that makes it easy to turn any mailing into a job for running later. That's
|
|||
one of the most common jobs in a modern web application: Sending emails outside
|
||||
of the request-response cycle, so the user doesn't have to wait on it.
|
||||
|
||||
The main point is to ensure that all Rails apps will have a job infrastructure
|
||||
in place, even if it's in the form of an "immediate runner". We can then have
|
||||
framework features and other gems build on top of that, without having to worry
|
||||
about API differences between Delayed Job and Resque. Picking your queuing
|
||||
backend becomes more of an operational concern, then. And you'll be able to
|
||||
switch between them without having to rewrite your jobs.
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
|
|
Loading…
Reference in a new issue