调用本地(在内存中)Twisted
有没有一种方法可以运行twisted而不将其暴露在网络端口后面?
我们有一个 wsgi servlet 在 apache/mod_wsgi 后面运行。
该 servlet 需要向本地 Twisted 实例发送消息。但是,我们还没有找到运行它的方法。
我们期望的架构层:
apache_httpd> mod_wsgi > servlet >扭曲
有办法运行它吗?
问候
和过去
there's a way to run twisted without expose it behind a network port?
We have a wsgi servlet running behind apache/mod_wsgi.
This servlet need to send a message to a local Twisted instance. But, we are not finding a way to run this.
Our expected architecture layers:
apache_httpd > mod_wsgi > servlet > twisted
There's a way to run it?
Regards,
And Past
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Twisted 可以通过 标准输入 接受输入,通过 < a href="http://twistedmatrix.com/documents/12.0.0/api/twisted.internet.interfaces.IReactorUNIX.html" rel="nofollow">UNIX套接字(也称为“套接字文件”),并通过 本地绑定的TCP网络端口。这些都不需要将您的 Twisted 服务暴露给外界。
Twisted can accept input via standard input, via a UNIX socket (also known as a "socket file"), and via a locally bound TCP network port. None of these need necessarily expose your Twisted service to the outside world.