Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This is called <strong>IIS Life Cycle</strong><br> The fully details must be direct read from Microsoft and the creators of the IIS.<br> Is not the same for all IIS.</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb470252(v=vs.100).aspx" rel="nofollow noreferrer">Life Cycle Overview for IIS 7.0</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/ms178473(v=vs.100).aspx" rel="nofollow noreferrer">Life Cycle Overview for IIS 5.0 and 6.0</a></p> <p>and there are more if you search on internet.</p> <blockquote> <p>do they all get a separate instance of the app or do they use the same one </p> </blockquote> <p>If you use many pools for the same application <a href="https://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/659f2e2c-a58b-4770-833b-df96cabe569e.mspx?mfr=true" rel="nofollow noreferrer">(web garden)</a> then they the request are split among the pools, or else one pool, one instance is take care to process the page.</p> <p>The page can be processing from different threads, but there is a global lock on the session, so if you use the MS session the page will processing in serial (expect the one that did not use session)</p> <p>Each pool is one instance that hold the static data, and is the same for all request from that pool. If you use two pools you have two different sets of static data.</p> <p>Some questions about session lock: <a href="https://stackoverflow.com/questions/11325150/trying-to-make-web-method-asynchronous">Trying to make Web Method Asynchronous</a> , <a href="https://stackoverflow.com/questions/9426673/web-app-blocked-while-processing-another-web-app-on-sharing-same-session">Web app blocked while processing another web app on sharing same session</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload