2

我正在寻找一种方法来托管我的 .NET 应用程序,如果它是 Java 应用程序,我会毫不犹豫地使用 Google App Engine。.NET 有类似的替代方案吗?

最重要的两个特征:

  • 它必须是免费的或非常便宜的(排除即使在最便宜的计划中也太贵的 Azure)
  • 它必须可靠且快速(许多免费的 .NET 托管存在问题)

我确实看过 AppHarbor,但每当我看到“实例”时,我都会被推迟(我不想考虑租用实例时间,我只想托管我的代码而不担心“实例”)。此外,他们似乎瞄准了想要某种我不需要/想要的持续集成环境的受众。

.NET 应用程序有这样的托管服务吗?

4

1 回答 1

1

Most Platform-as-a-service vendors work on instances. That's one of the benefits over traditional hosting (since you can scale on demand)

I wouldn't rule out Azure completely. An extra small instance costs around £30 a month and the Windows Azure Accelerator for Web Roles allows you to run multiple web sites on one instance.

I've never used AppHarbour but considering they'll give you a single instance free, I'd say that was a cheap startup. They don't have any requirement that you use CI but I do believe you deploy using Git or Mercurial so the deployment experience isn't quite as "nice" as Azure (not that Azure's is perfect by any means).

Typically however, "fast, reliable and cheap" won't come together.

于 2011-10-20T23:44:35.640 回答