Tag background job

14 votes

4 comments

3877 views

defer expensive job

If you want to process something expensive as part of a web request, it will delay the response. If the job is not critical, it's wiser to move the expensive to a background queue and returns the response immediately.

flyerhzm
Fork me on GitHub