laravel-async-queue
                                
                                 laravel-async-queue copied to clipboard
                                
                                    laravel-async-queue copied to clipboard
                            
                            
                            
                        support for mongodb
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 ';
Not really sure what the best way is, probably not using a model at all.
How about using laravel cache?
I don't think I can rely on that.
I'm :-1: on this.
Also need mongodb support. Are you gonna update to include it ? For laravel 4 ?