Whether to use a worker role or a web role : Windows Azure

前端 未结 5 1870
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-02 07:18

I am writing a small computation program with lot of read operations on blob files... Should I have to go for worker role or a web role....

5条回答
  •  無奈伤痛
    2021-01-02 07:34

    I'll make it simple

    • web role is for hosting an IIS based web application.

    • worker role is for any other application.

    The only real difference between the two is that IIS is installed on the Web Role and your application will be deployed into it.

提交回复
热议问题