-
-
Notifications
You must be signed in to change notification settings - Fork 318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add jobs processing #1785
Add jobs processing #1785
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems good, untested
Maybe we can add some tests for this |
Done. I actually noticed that we can just switch everything to jobs if we are using the |
Instead of processing live, we now support the use of Jobs & Queues.
This ensure faster response when jobs are enabled.
This pull request adds a new config
use_job_queues
with default to0
.By setting it to
1
, import will be added to a processing queue.Such jobs on the queue can then be executed by running
php artisan queue:work
on server side.