InterviewSolution
| 1. |
Difference Between Web And Worker Roles In Windows Azure? |
|
Answer» The main difference between the TWO is that an instance of a web ROLE runs IIS, while an instance of a worker role does not. Both are managed in the same way, however, and it’s common for an application to use both.For example, a web role instance might accept REQUESTS from USERS, then pass them to a worker role instance for processing. The main difference between the two is that an instance of a web role runs IIS, while an instance of a worker role does not. Both are managed in the same way, however, and it’s common for an application to use both.For example, a web role instance might accept requests from users, then pass them to a worker role instance for processing. |
|