laravel-async-queue
laravel-async-queue copied to clipboard
Doesn't make a lot of sense
You're using database under the hood which is not async so....
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.
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.