queue and jobs
laravel queue-> first in fort out
for example to process some tasks it needs too much time, for that type we need have to throw to some place, after some time we have to execute automatically
php artisan queue:work
Which artisan command generates jobs migrations?
Marked Answer : queue:table
Correct Answer : queue:table
Queueable jobs are stored in _______ directory.
Marked Answer : app/Queue
Correct Answer : app/Jobs
Which queue drivers supported in Laravel?
Marked Answer : All of the above
Correct Answer : All of the above
Which command is used to start a queue worker?
Marked Answer : queue:work
Correct Answer : queue:work
Which method is invoked when the job is processed by the queue?
Marked Answer : handle()
Correct Answer : handle()
No comments:
Post a Comment