1.

What Are The Different Type Of Jit's ?

Answer»

DIFFERENT Types of JIT are:

  1. Pre-JIT - Complies COMPLETE source CODE into native code at the TIME of deployment.
  2. Econo-JIT - Complies methods that are called at runtime. 
  3. Normal-JIT - Complies methods that are called at runtime and get stored in CACHE. Next time when the same method is called, it will be taken from cache.

Different Types of JIT are:



Discussion

No Comment Found