Is django orm & templates thread safe?

Posted by Piotr Czapla on Stack Overflow See other posts from Stack Overflow or by Piotr Czapla
Published on 2010-04-15T14:03:40Z Indexed on 2010/04/15 23:33 UTC
Read the original article Hit count: 271

Filed under:
|
|

I'm using django orm and templates to create a background service that is ran as management command.

Do you know if django is thread safe?

I'd like to use threads to speed up processing. The processing is blocked by I/O not CPU so I don't care about performance hit caused by GIL.

© Stack Overflow or respective owner

Related posts about django

Related posts about django-models