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

support for mongodb

Open natsu90 opened this issue 11 years ago • 5 comments

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, $string = 'php artisan queue:async %d --env=%s '; change the %d to %s so it'll become, $string = 'php artisan queue:async %s --env=%s ';

natsu90 avatar Oct 26 '14 10:10 natsu90

Not really sure what the best way is, probably not using a model at all.

barryvdh avatar Nov 19 '14 13:11 barryvdh

How about using laravel cache?

natsu90 avatar Nov 22 '14 03:11 natsu90

I don't think I can rely on that.

barryvdh avatar Nov 22 '14 08:11 barryvdh

I'm :-1: on this.

GrahamCampbell avatar Nov 22 '14 10:11 GrahamCampbell

Also need mongodb support. Are you gonna update to include it ? For laravel 4 ?

beesofts avatar May 26 '15 11:05 beesofts