Lowering worker threads from 8 to 4 to conserve memory.

This commit is contained in:
Samuel Clay 2010-03-02 17:04:54 +00:00
parent d29844634f
commit 391aa76dd6

View file

@ -18,7 +18,7 @@ class Command(BaseCommand):
help='Wait timeout in seconds when connecting to feeds.'),
make_option('-V', '--verbose', action='store_true',
dest='verbose', default=False, help='Verbose output.'),
make_option('-w', '--workerthreads', type='int', default=8,
make_option('-w', '--workerthreads', type='int', default=4,
help='Worker threads that will fetch feeds in parallel.'),
)