Google App Engine TCP/IP 连接

发布于 2024-12-09 06:43:52 字数 136 浏览 3 评论 0原文

我想使用 Go 在 GAE 中建立几个 TCP/IP 连接。正如我所搜索的那样,不可能从应用程序引擎获取静态 IP,但找不到有关其他限制的太多数据。

是否可以在 GAE 中建立 TCP/IP 连接,如果可以,可以使用多长时间才能重新建立连接?

I would like to set up a couple TCP/IP connections in GAE using Go. As I've searched it is impossible to get a static IP from the app engine, but can't find much data on other limitations.

Is it possible to establish a TCP/IP connection in GAE, and if so, how long can it be used before it has to be re-established?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

晨光如昨 2024-12-16 06:43:52

此处明确提到,您不得从沙盒环境中打开套接字。
现在HTTP也是基于TCP/IP的,你可以使用URL“获取”内容(在Python中是urllib和urllib2,对Go不太了解)。但是原始 SOCK_STREAM 连接呢?不。

问候,

亚蒂·萨加德

It is clearly mentioned here that you may not open a socket from within their sandboxed environment.
Now HTTP is also based on TCP/IP, and you may "fetch" content using URLs (in Python it's urllib and urllib2, don't know much about Go). But raw SOCK_STREAM connections? NO.

regards,

Yati Sagade

苏大泽ㄣ 2024-12-16 06:43:52

情况发生了变化,截至 2013 年 7 月,有一个可用于 Java 和 Python 的实验性 Socket 服务。它仅对付费帐户启用,您只能创建出站连接,并且几乎没有其他限制。此外,文档称该 API 不稳定,可能会受到变化。

截至 2013 年 12 月,Go 也可以使用实验性的 Socket 服务。 相关文档页面中的条件与 Java 和 Python 中的条件类似。

The situation has changed and as of July 2013 there is an experimental Socket service available for Java and Python. It is enabled only for paid accounts, you can only create outbound connections, and there are few other limitations. Also, the docs says that the API is not stable and may be subject to changes.

As of December 2013 there is the experimental Socket service available for Go as well. The conditions in the relevant doc page are similar to the ones for Java and Python.

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