What is an IIS application pool?

后端 未结 15 1659
轻奢々
轻奢々 2020-12-02 04:26

What exactly is an application pool? What is its purpose?

15条回答
  •  北海茫月
    2020-12-02 04:42

    application pool provides isolation for your application. and increase the availability of your application because each pool run in its own process so an error in one app won't cause other application pool . and we have shared pool that hosts several web applications running under it and dedicated pool that has single application running on it .

提交回复
热议问题