Introduction To The Queue System - Diving Laravel - 0 views
-
Laravel is shipped with a built-in queue system that helps you run tasks in the background
-
The QueueManager is registered into the container and it knows how to connect to the different built-in queue drivers
-
for example when we called the Queue::push() method, what happened is that the manager selected the desired queue driver, connected to it, and called the push method on that driver.
- ...2 more annotations...