php - How do you set up the database Queue driver for Laravel 5? -


i building application laravel receives notifications , fires events handle notifications. want these events queued 1 event handled @ time.

i've been trying use "database" queue driver documentation says available. i've changed default driver in config/queue.php set use "database" , ran php artisan queue:table create jobs migration when send notification app not see sign of queues being used in jobs table or anywhere else. going wrong?

(my eventhandler class using shouldbequeued well)

in .env file, have add this.

queue_driver=database 

Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -