Question on AppDomain

  • Thread starter Thread starter A
  • Start date Start date
A

A

Hi all,

Since Asp.net creates a distinct application domain for each application it
hosts in its worker process does that mean that each request is processed
through that application space until the last request at which time a new
application domain is created? In other words, do all sessions go through
that application until there are no more sessions?

Thanks
 
Hi A:

If I understand your question, then yes, all requests go to the same
application domain. In the event the application has to be restarted
(because of a config change, or due to the processes exceeding some
recycling threshold) then a new application spins up and starts taking
all new requests.
 
Back
Top