In Windows Azure: What are web role, worker role and VM role?

后端 未结 4 433
渐次进展
渐次进展 2020-11-29 17:01

The application I work on contains a web role: it\'s a simple web application. I needed to host the application in Windows Azure, so I created a web role. I actually want

4条回答
  •  失恋的感觉
    2020-11-29 17:58

    • Web roles are web applications hosted in IIS.
    • Worker roles are processes that can do some work (i.e. automatically compress uploaded images, do stuff whenever something changes in your database, get new messages from queue and process, you name it)
    • VM roles host VMs

提交回复
热议问题