I'd like to use requests 's session to reuse connections in django.
Reusing connections in Django with Python Requests
says I only need to declare it in global and access it.
However I doubt it is working as expected because it didn't get any faster in my test.
Is there a way to see if connection is actually reused as described here?
http://docs.python-requests.org/en/latest/user/advanced/
Django spawns separate thread for each requests and I think it defeats the mechanism to share the connection. (because session won't be shared across multiple threads) .. this is my hypothesis..