Default recycle to 500

This commit is contained in:
Ilan Steemers
2015-06-28 17:12:30 +02:00
parent e4634e1fe4
commit 218913e626
+1 -1
View File
@@ -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')