laravel-async-queue
laravel-async-queue copied to clipboard
Laravel Async Queue Driver
Hi, The driver runs correctly, but I need to notify the user via alert when queue ends successfully or not. Thx!
Hi Barry I'm completely new to laravel and your laravel-async-queue and therefore I don't know if the table created with the queue:table command has changed in 5.3 or if it's...
the command ``` php artisan queue:table ``` actually creates a table named **jobs** instead of **queue_jobs**. Just changing the async connection configuration solves the problem
Because in SerializesModels trait is __sleep() magic method..
Hello, My mail is not sending though I follow async configuration. But in sync driver it works just fine. was there any restriction on using async?
hello sorry I speak english a little bit, my problem is : - laravel-async-queue work in enviroment local (xampp). - laravel-async-queue fail in server remote (1and1) the database in the...
composer log ``` Problem 1 - Conclusion: remove laravel/framework v5.2.3 - Conclusion: don't install laravel/framework v5.2.3 - Installation request for barryvdh/laravel-async-queue 0.4.x -> satisfiable by barryvdh/laravel-async-queue[v0.4.0]. ```
I've followed every instructions except for service provider, I use this instead: ``` 'Barryvdh\Queue\AsyncServiceProvider' ``` But I get this exception: > InvalidArgumentException in QueueManager.php line 132: > No connector for...
I used async queue. And, I want to run my background function only once. How can i do that ? Here is my code. Is it right or wrong ?...
First of all i like to thank you for this awesome plugin. I have created a job class called `UploadToDropbox` and the class is as follows ```