InterviewSolution
| 1. |
Is Clr Loaded Automatically For Each W3wp/app Pool? |
|
Answer» An Application Pool that only serves STATIC files with all features installed occupies 3 MB private bytes, 5 MB page FILE. When ASP.NET requests are made we pre-load a small amount of the CLR during startup (~100kb) . The preload is configurable by a property on the Application Pool. It is CALLED managedRuntimeVersion. The rest of the CLR (~8mb) will be LOADED on the first ASPX request. An Application Pool that only serves static files with all features installed occupies 3 MB private bytes, 5 MB page file. When ASP.NET requests are made we pre-load a small amount of the CLR during startup (~100kb) . The preload is configurable by a property on the Application Pool. It is called managedRuntimeVersion. The rest of the CLR (~8mb) will be loaded on the first ASPX request. |
|