Google App Engine 中的隔离

发布于 2024-10-24 02:24:01 字数 147 浏览 2 评论 0原文

在 Google App Engine 中运行应用程序时,我可以获得什么隔离?这显然是一个相当高密度的环境。我有自己的主题吗?或者我用来处理我的请求的线程可能刚刚被另一家公司使用?

我意识到,如果他们的安全措施正确,这不应该是我的问题。我主要想知道它是如何工作的。

What isolation do I get when running an application in Google App Engine? It's clearly a pretty high density environment. Do I get my own threads? Or could it be that the thread I use to process my request may have just been used by another company?

I realise, if they have got security right, this shouldn't be a concern of mine. I am primarily interested to know how it works.

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

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

发布评论

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

评论(1

时光暖心i 2024-10-31 02:24:01

此处提供了运行时的一些详细信息。简而言之,您的应用程序在一定数量的实例上运行。每个实例都包含一个专用进程及其自己的沙盒运行时环境(Python 解释器或 JRE)。应用程序之间不共享运行时。

Some details of the runtime are here. In short, your application is run on some number of instances. Each instance consists of a dedicated process with its own sandboxed runtime environment (a Python interpreter or JRE). Runtimes aren't shared between apps.

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