[Django]-Persistant TCP connection in Django

4👍

Use the Twisted wsgi container to run Django. This container simply runs the WSGI application in multiple Twisted-threadpool threads, so you can simply call any Twisted API via blockingCallFromThread. There’s really not that much to it!

👤Glyph

Leave a comment