1

考虑到在 GAE 上开设在线商店的想法。如果编码正确,具有适当的缓存和并发请求,我应该对“新”定价模型中的成本有什么期望?

我没有在 GAE 上找到任何涉及电子商务的成功案例(应该是暗示吗?)。从技术上讲,不再有任何问题,他们现在允许在自定义域上使用 HTTPS,我不想存储信用卡信息。

假设我每天有 500 名访客,分布在大约 10 小时内。比如说,这会产生大约 10k 的网页浏览量。这大约需要多少个前端实例?1、2、5、10、50 还是更多?

4

1 回答 1

1

One instance can do 5-10 requests a second, if you enable concurrent requests. So you should be able to handle your load with one instance.

The other factor is datastore usage, which is highly app specific.

All-in-all we find AppEngine fairly priced. The biggest saving comes from the fact that you don't need admin and operations staff, which you would if you handled your own infrastructure and/or software stack.

于 2012-10-02T17:11:36.947 回答