2

如果我在 GAS 中编写了一个完整的 Web 应用程序,然后它变得流行起来,它开始每秒接收一千个请求。有什么方法可以让谷歌处理它,或者在非谷歌基础设施上托管我的 GAS 应用程序,就像 谷歌应用引擎一样

4

3 回答 3

0

我从未见过 Google 建议 Apps Script 是这种规模的工具。转到 App Engine,不要通过 Go 等。

Google Apps 脚本服务没有第三方实现。但是,它是 Java 上的 JavaScript 实现(想想Rhino),您可以自己运行它 - 或者您可以在 App Engine 上运行并使用 Java GData API 来替换 Apps Script 服务。

于 2013-06-26T18:08:28.590 回答
0

如果应用程序在用户帐户下运行(以用户访问网络应用程序的方式执行应用程序),它将消耗每个用户的配额并使用他们自己的帐户资源(文档、表格等)。这将允许“无限”的可扩展性。

这只是我自己的看法,我是对的还是完全错的?

于 2013-06-27T23:50:09.283 回答
0

Your GAS script scales up automatically. The only thing that you should be worried about is your code where, if you have locks, thousands of users waiting for a lock will cause delays to the user. Other than that, scaling up shouldn't be a problem. After all, there are possibly millions of scripts being run by different users.

于 2013-06-26T04:10:33.597 回答