From 218913e626064b4f91dab0b5ec1bf8e8960bf516 Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Sun, 28 Jun 2015 17:12:30 +0200 Subject: [PATCH] Default recycle to 500 --- django_q/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_q/conf.py b/django_q/conf.py index 55c493a..35924d3 100644 --- a/django_q/conf.py +++ b/django_q/conf.py @@ -30,7 +30,7 @@ WORKERS = conf.get('workers', cpu_count()) COMPRESSED = conf.get('compress', False) # Number of tasks each worker can handle before it gets recycled. Useful for releasing memory -RECYCLE = conf.get('recycle', 1000) +RECYCLE = conf.get('recycle', 500) # The Django Admin label for this app LABEL = conf.get('label', 'Django Q')