Framework/ASP.NET 5.0

ASP.NET Core - 인 프로세스 vs 아웃 오브 프로세스 In Process versus Out of Process

청렴결백한 만능 재주꾼 2021. 8. 25. 03:14
반응형
  In Process Out of Process
프로세스 이름 w3wp.exe OR iisexpress.exe dotnet.ext
웹 서버 개수 Only one Two (Internal & External)
비교 Better for perfomance Penalty of proxying requests between internal and external web server

 

 

 

ASP.NET Core launchsettings.json File

commandName AspNetCoreHostingModel Internal Web Server External Web Server
Project Hosing Setting Ignored Only one web server - Kestrel
IISExpress InProcess Only one web server - IIS Express
IISExpress OutOfProces Kestrel IIS Express
IIS InProcess Only one web server - IIS
IIS OutOfProcess Kestrel IIS

 

반응형