Pros and cons of having dedicated application pools over keeping web applications in one default app pool

后端 未结 5 2128
情话喂你
情话喂你 2020-12-05 23:15

What are pros and cons of having dedicated application pools over keeping web applications in one default app pool?

5条回答
  •  遥遥无期
    2020-12-05 23:46

    If you have separate apppools then you pay a penalty in the initial load time of the first person to visit your site and spin back up the apppool after it recycles.

    For example let's say overnight no-one hits your server, IIS will spin down (default 20mins I believe). The first person to visit the server will suffer a delay until the your application has been loaded back into memory.

    Depending on how you deploy your site (e.g. release mode etc..) this will either not be a problem or could be annoying.

    This is why we are looking into moving to a single apppool/server rather than 1 for each site.

提交回复
热议问题