Django 中的持久 TCP 连接

发布于 2024-09-11 20:46:17 字数 173 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

極樂鬼 2024-09-18 20:46:17

使用 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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文