Windows Azure or Amazon EC2 for ASP.NET MVC Development?

后端 未结 7 1723
故里飘歌
故里飘歌 2020-12-22 20:00

If you want to build enterprise ASP.NET MVC applications that use MSSQL databases is it better to use Windows Azure or Amazon EC2?

I didn\'t find any satisfying answ

7条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-22 20:35

    Roopesh gave a good description of some of the differences. Let me add to it, for your specific case.

    Since you want to use Microsoft SQL Server, Azure's SQL Azure is going to be a good fit. Further, if you deploy your application into an Azure Web Role (a role is a virtual machine with a specific template, and a web role specifically runs IIS), you can then work directly with your SQL Azure databases in the same data center without incurring any bandwidth charges or Internet latency between your app and your database.

    One clarification: SQL Azure does triple-replicate your data. This replication is instant, so keep this in mind when you DELETE * FROM CUSTOMERS, as this deletion is also triple-replicated. Consider this when planning your backup strategy (maybe take advantage of Azure's sync service to periodically back up to another database, either in Azure or on-premises).

提交回复
热议问题