InterviewSolution
Saved Bookmarks
| 1. |
What are queues in Laravel? |
|
Answer» While building any application we FACE a SITUATION where some tasks take time to process and our page gets loading until that task is finished. One task is sending an EMAIL when a user REGISTERS, we can send the email to the user as a background task, so our main thread is responsive all the time. Queues are a way to run such tasks in the background. |
|