zoukankan      html  css  js  c++  java
  • Application Pool 与 AppDomain 区别

    I saw a lot of people asking what's the differences between Application Pool and AppDomain in ASP.NET.
     
    First of all, Application Pool is a concept in IIS, but AppDomain is a concept in .NET.  You can write you own program to use 2 or more AppDomaines.
     
    I did a test with the IIS7 Asp.net 2.0 on my Vista computer.
     
    Here is the test code:
     
     
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string info;
            info = "Current Process Name:" + Process.GetCurrentProcess().ProcessName + "</br>";
            info += "Current Process Id:" + Process.GetCurrentProcess().Id + "</br>";
            info += "Current Application Domain:"+AppDomain.CurrentDomain.FriendlyName + "</br>";
            info += "Current Application Domain Base Dir:"+AppDomain.CurrentDomain.BaseDirectory + "</br>";
           
           
            divInfo.InnerHtml = info;
        }
    }
     
     
    Now, I created 2 application pools called AppPool1 and AppPool2;
    Then I created 3 applications called AppTest1, AppTest2 and AppTest3. All of them point to the same directory where my sample is.
    I put AppTest1 under AppPool1, AppTest2 and AppTest2 under AppPool2.
     
    Here is the result:
     
    Current Process Name:w3wp
    Current Process Id:3784
    Current Application Domain:/LM/W3SVC/1/ROOT/AppTest1-2-128701111683637820
    Current Application Domain Base Dir:C:\inetpub\wwwroot\AppTest\

     
    Current Process Name:w3wp
    Current Process Id:5044
    Current Application Domain:/LM/W3SVC/1/ROOT/AppTest2-1-128701111868733395
    Current Application Domain Base Dir:C:\inetpub\wwwroot\AppTest\
     
    Current Process Name:w3wp
    Current Process Id:5044
    Current Application Domain:/LM/W3SVC/1/ROOT/AppTest3-2-128701113026462030
    Current Application Domain Base Dir:C:\inetpub\wwwroot\AppTest\

     
    Here is the conclusion:
     
    IIS process is w3wp;
    Every application pool in IIS use it's own process; AppPool1 uses process 3784, AppPool2 uses process 5044
    Different applications in Asp.net will use different AppDomain;
    AppTest2 and AppTest2 are in different AppDomain, but in the same process.
     
    What's the point to use them?
     
    Application pool and AppDomain , both of them can provide isolations, but use different approches. Application pool use the process to isolate the applications which works without .NET.  But AppDomain is another isolation methods provided by .NET.
    If your server host thousands of web sites, you wont use thousands of the application pool to isolate the web sites, just becuase, too many processes running will kill the os. However, sometime you need application pool. One of the advantages for application pool is that you can config the identity for application pool. Also you have more flexible options to recyle the application pool. At least right now, IIS didnt provide explicit options to recyle the appdomain.
     
  • 相关阅读:
    第4天--linux内核学习
    make menuconfig出错,需要安装libncurses5-dev找不到文件的终极解决办法(不必更换源,适用于ubuntu 32位平台)
    uboot学习第一天
    与或左移右移操作在ARM寄存器配置中的作用
    第四天网络编程笔记
    socket编程热身程序
    线程的创建pthread_create.c
    json.dumps与json.dump的区别 json.loads与json.load的区别
    解决在Vim中鼠标右键不能粘贴
    Python with语句
  • 原文地址:https://www.cnblogs.com/Langzi127/p/1791291.html
Copyright © 2011-2022 走看看