Google App Engine 中的隔离
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处提供了运行时的一些详细信息。简而言之,您的应用程序在一定数量的实例上运行。每个实例都包含一个专用进程及其自己的沙盒运行时环境(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.