IT lexicon Programming JIT

JIT Just-In-Time compiler

Programming På svenska → Updated: 2026-05-24

Compile code to machine code while the program runs — start interpreted, compile the hot parts.

V8 (Chrome/Node), HotSpot (Java JVM), PyPy. The "interpret first, compile when it pays off" model usually gives the best of both worlds: fast startup + near-native performance for long-running processes.

← Back to the lexicon