ASP.NET Website vs ASP.NET WebApp: What is the difference in performance?

The difference between an ASP.NET site and an ASP.NET web application has been repeatedly asked. However, I could not find the answer to my question about whether there is any real difference in performance when using one over the other. In addition, I understand that the website design is dynamically compiled; Does this mean every time the request compiles the requested page?

+5
source share
2 answers

Let's make assumptions here, and anyone who has done the actual tests can add their two cents.

Application launch speed difference

Site start:

  • = >
  • - + JIT compile = > double work

-:

  • JIT compile = >
  • ( , ) = > ,

- , . , . Asp.net .

-:

  • , + JIT

WebApplication:

  • , JIT .
+4

asp.net . AKA - .

, / . /.

, , , . .

- -. .

+1

All Articles