barryvdh / laravel-async-queue

Laravel Async Queue Driver
286 stars 76 forks source link

Doesn't make a lot of sense #98

Open Stevemoretz opened 3 years ago

Stevemoretz commented 3 years ago

You're using database under the hood which is not async so....

barryvdh commented 3 years ago

Yes but it fires the queue directly, without blocking the webserver. It just runs the job in the background, so you don't have to wait for it. And don't have to have a queue running.

Stevemoretz commented 3 years ago

Sure it's lovely, wish just there was a way to avoid database, I was going to use this for inside websockets only because I was using database directly in it which was wrong, but this is doing the same thing.