django-rq
django-rq copied to clipboard
A simple app that provides django integration for RQ (Redis Queue)
Is there a way to tell django-rq to re-use database connections? It appears from my logs that a new Postgres connection is being opened for every job that is executed....
The get_connection() calls get_redis_connection(), which will instantiate a new Redis client every time it is called. Each Redis client will have a new instance of ConnectionPool. This is kind of...
Hi, I'm facing a problem on my workers when I perform a call to a distant server using *requests* in the main process, it goes well, and works, but when...
It seems like `get_scheduler()` calls without import custom `queue_class` from django `setting` file.
python version: 2.7 django version: 1.10.6 django-rq version: 0.9.6. Im unable to call a function inside a class. sample code ```python class SampleClass(models.Model): @staticmethod def my_function(data): return things @property def...
I have a use case where I'd like only superusers to access the Django-RQ inside Django Admin, but this customization is not possible with the current code. It'd be awesome...
There is no docs link or nothing in the README regarding support of crontab.
I would like to override `RQ_QUEUES` during testing, so that I can use a different Redis instance for testing purposes. (I would also like to make sure this instance is...
Each queue should be able to have its custom_exception or None. Make a global custom_exception may lead us to a non desired behavior on other queues.
Hello all. I've writed a custom exception handler and i'm retrying some jobs after a count number of failures. After that max_retries reaches the limit, i want to put them...