django-db-queue icon indicating copy to clipboard operation
django-db-queue copied to clipboard

Simple database-backed job queue

Results 7 django-db-queue issues
Sort by recently updated
recently updated
newest added

Merged upstream tweak for #53 and provided a solution to #52 and #16. Updated tests associated with #52 to reflect #53 @j4mie - I think I've got this change correct...

Hi, Firstly, thank you for sharing this app - I heard Jamie mention it on DjangoChat a while back. I'm now looking to use it and I wonder if you...

For some libraries, it's necessary to use async code, even if it's in a single process where the async benefits don't apply. This transparently calls a job function as a...

Current `Job` creation depends on .save() to be called, as a result processing jobs created using `bulk_create` causes django-level exceptions. Either the Query manager should be overridden to return `UnsupportedOperation`...

bug

Would be great if there was a possibility to launch a Worker process that terminates when no more jobs are available so that a worker can be launched from a...

`python manage.py worker --drain` will start a worker process which will drain all jobs in the queue (if there are any) and then exit. This addresses #16 (from seven years...

Hi, FYI - for anyone attempting to use `django-db-queue` with `mysql-connector-python` I've encountered a blocking limitation insofar as the connector does not yet support [Django enum types](https://docs.djangoproject.com/en/3.2/ref/models/fields/#enumeration-types) and hence throws...