django-rq icon indicating copy to clipboard operation
django-rq copied to clipboard

A simple app that provides django integration for RQ (Redis Queue)

Results 120 django-rq issues
Sort by recently updated
recently updated
newest added

I'm currently using django-rq on Heroku. On Heroku, workers don't finish their current tasks when a shut down signal is received. Instead, they run for 10 seconds, and then terminate...

Hello. Queue `enqueue` method allows to provide custom `job_id` instead of autogenerated `uuid4`. I believe, that colon sign `:` is very useful for redis keys (I might be wrong). But...

Django's [on_commit](https://docs.djangoproject.com/en/1.10/topics/db/transactions/#django.db.transaction.on_commit) hook seems perfectly appropriate for delaying `enqueue()` until the database transaction commits. Django 1.9+ maintains its own per-database-connection (database connections are thread-local) queue of functions to run when...

Add a option to persist db connections get_worker('high').work(burst=True) obj = Model.objects.filter(user=self.test_user).first() --- Python==3.4 django==1.9.7 django-rq==0.9.0 rq==0.5.6 rq-scheduler==0.6.0 redis=2.10.5 --- Traceback (most recent call last): File "/authentication/tests.py", line 21, in setUp...

Idea here: https://github.com/ui/django-rq/issues/159#issuecomment-216763329 - created `rqcronjobs` management command - added some tests - added some documentation To verify: - does it make sense to use lazy for `RQ_CRONJOBS` - are...

Hi, Last days I have used `django-rq` for a Django based project, and considered the following use case - adding jobs to the queue, only by defining them from the...

I have a very simple task: ``` @job def log_info(): logger.info('Job running') ``` Queuing this task 500 times nearly takes 2 minutes to process with a single worker. ``` for...

We queue various functions, often passing in Django model instances as parameters, and this error is being raised by many or all of the places we call `queue.enqueue`. We started...