Django 中的持久 TCP 连接
我有一个 Django 应用程序,有时需要通过 TCP 发送一些数据,并且我希望此连接保持不变。
我想要的方法是创建一个简单的 Twisted TCP 服务器(我将等待初始连接),并在需要时以某种方式从 Django 视图调用它。
在这种情况下,Twisted 和 Django 之间的通信应该如何?
I have a Django application which sometimes needs to send some data through TCP and I want this connection to be persistant.
The way I wanted to do it was to create a simple Twisted TCP server (I'm the one who will be waiting for the initial connection) and somehow call it from a Django view whenever I would be needing it.
How should the communication look like beetwen Twisted and Django in this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Twisted wsgi 容器运行 Django 。该容器仅在多个 Twisted 线程池线程中运行 WSGI 应用程序,因此您可以通过
blockingCallFromThread
。真的没有那么多!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!