Does Google App Engine use google CDN to distribute static resources?

后端 未结 2 742
無奈伤痛
無奈伤痛 2021-01-04 13:03

I find a lot of articles on the web describing how GAE can be used as a CDN. But, I could not locate any mention about CDN in Google\'s documentation of App Engine.

相关标签:
2条回答
  • 2021-01-04 13:21

    Yes, GAE uses google's infrastructure for static content.

    Have a look at this session at Google IO 2009 and read slides 24-28.

    The static content is handled by specialized infrastructure. App runtimes don't serve them.

    0 讨论(0)
  • 2021-01-04 13:34

    Using App Engine as distributed file hosting isn't really an "official" usage of the service, so that's why it's never mentioned in any official documentation.

    App Engine apps are served out of multiple Google production datacenters, so in theory your app will serve requests (more or less) as quickly as GMail or Docs.

    If all your app does is serve static files, then you've basically got a free (to a point) CDN built on Google's servers.

    Some googling finds many examples of how to accomplish this.

    0 讨论(0)
提交回复
热议问题