tags:

views:

269

answers:

1
+1  Q: 

Asp.net + JIT?

What is default type of JIT compiler is used in .Net (visual studio) out of (Pre-JIT,Econo-JIT,Normal-JIT)?

+2  A: 

As far as I know default JIT is Pre-JIT but ASP.NET Does Not Support Pre-Just-In-Time (JIT) Compilation Through Native Image Generator.

A little bit of background on the various JIT types:

PRE-JIT: Compiles complete source code to native code in a single operation.

ECONO-JIT: Compiles only methods called at Runtime.

NORMAL-JIT: Compiles only methods called at Runtime and stored in cache.

JohnIdol