Introduction
Here is about this article:
- Send Email with
Laravel Queue
- Use
AWS SQS
So why do we need to use queue
?
When we execute some jobs that require longer time, like sending Emails, or uploading photos or videos, let users to wait until the jobs are completed is just not so practical.
So when users request some time consuming jobs, we need to use queue
to line them, and execute them on the background, and so the users could be released from current request immediately.