laravel-async-queue icon indicating copy to clipboard operation
laravel-async-queue copied to clipboard

Laravel Async Queue Driver

Results 42 laravel-async-queue issues
Sort by recently updated
recently updated
newest added

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 ```

``` php DB::transaction(function(){ QueueHelper::pushAJobWithAsyncDriver(); sleep(5); }); ``` Here would raise an exception `No query results for model [Barryvdh\\Queue\\Models\\Job].` Reason: The job excuted before transaction commit. ``` php $item = Job::findOrFail($this->argument('job_id'))...

Hello, I'm receiving 'Fatal Error: Class 'Barryvdh\Queue\AsyncServiceProvider' not found' Laravel 5.1 My composer file "require": { "php": ">=5.5.9", "laravel/framework": "5.1.*", "barryvdh/laravel-async-queue": "0.4.x@dev", "laravel/socialite": "2.0" }, App.php Barryvdh\Queue\AsyncServiceProvider::class,

Just as the title says, but if I run a queue listener (`php artisan:queue`) the queue in DB clears itself after running. Is it because I setup the queue wrong?...

Hi, we've been using your code successfully in a testing linux environment but we have to deploy it to a Windows server. When we run the working code we get...

i'm using "jenssegers/mongodb" package, i've to make changes at the following files to make it work, > src/Models/Job.php change `use Illuminate\Database\Eloquent\Model;` to `use Jenssegers\Mongodb\Model;` > src/AsyncQueue.php find the following line,...

Queue pushes are working without any issue. But, If i try to run queue:work daemon, It is throwing an error production.ERROR: exception 'InvalidArgumentException' with message 'No connector for []' in...

I created an async job for a long processing tasks, it gets correctly executed asynchronously when the app is running via apache mod_php, but it gets executed synchronously when the...

My issue is I've use async queue as an internal queue. I got my beanstalkd as a default and grab the external queue from it. In handler, I then re-assign...

Hi, I have this class which i included in composer.json: ``` "files": ["app/lib/coolstuff/A.class.php"] ``` A.class.php: ```