WebApp in AppServices vs CloudService

旧街凉风 提交于 2019-12-12 21:25:34

问题


Is WebApp (formerly Azure Website) in the newly announced "Azure AppService" the preferred approach to building highly scalable web applications as opposed to using "Azure CloudServices"?

My original understanding was that web applications hosted as "Azure CloudServices" would scale better and "Azure Websites" were for simpler web sites/applications.

I'm building a web application and scalability is a big concern. Which is the "better" approach?


回答1:


Your exact answer might depend on what you mean by "scale better", but in general WebApps are now pretty much on parity with Cloud Services. See http://azure.microsoft.com/en-us/documentation/articles/choose-web-site-cloud-service-vm/

To seriously scale you need to keep functionality minimal in the web application and delegate to external resources for computation, messaging and storage. That means the better web technology is the one that can communicate better with outside resources, and the App Service architecture clearly gives that advantage to WebApps.

The App Service preview is just the latest indication that Microsoft intends to continue investing in and promoting WebApps predominately. So unless there's a compelling need for a Cloud Service feature, I would choose WebApps.



来源:https://stackoverflow.com/questions/29247383/webapp-in-appservices-vs-cloudservice

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!