mattstauffer / Torch

Examples of using each Illuminate component in non-Laravel applications
MIT License
1.85k stars 210 forks source link

Queue #150

Closed Intrflex closed 3 years ago

Intrflex commented 4 years ago

Is there any way of making this work with the database driver?

Gummibeer commented 3 years ago

As the Database and Queue components work standalone they should also work together. But I highly recommend to don't use the database driver as table-locks don't play well with the queue table. We had it very often, without and immense load, that jobs have been processed twice (multiple queue worker) or never got to the queue as the dispatch failed.

Gummibeer commented 3 years ago

duplicates #103 @mattstauffer can be closed in favor of the other issue.