Is django orm & templates thread safe?
- by Piotr Czapla
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.