# .NET Just in Time Compilation and Warming up Your System

DevFeed: [.NET Just in Time Compilation and Warming up Your System](<https://devfeed.tech/articles/net-just-in-time-compilation-and-warming-up-your-system-20707.md>)

Original publisher: [Read original article](<https://docs.microsoft.com/archive/blogs/abhinaba/net-just-in-time-compilation-and-warming-up-your-system>)

Author: Abhinaba Basu \[MSFT\]

Published: 2014-09-29T12:23:49Z

Content type: tutorial

Language: en

Sources: [Abhinaba Basu](<https://devfeed.tech/sources/abhinaba-basu.md>)

Topics: [JIT](<https://devfeed.tech/topics/jit.md>), [.NET](<https://devfeed.tech/topics/net.md>), [Latency](<https://devfeed.tech/topics/latency.md>)

Tags: [compilation](<https://devfeed.tech/tags/compilation.md>), [debug](<https://devfeed.tech/tags/debug.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [jit](<https://devfeed.tech/tags/jit.md>), [latency](<https://devfeed.tech/tags/latency.md>), [net](<https://devfeed.tech/tags/net.md>), [server](<https://devfeed.tech/tags/server.md>)

## AI overview

This tutorial explains how Just In Time (JIT) compilation in the .NET stack affects latency when managed applications are deployed at scale. It describes warming servers before they serve queries and uses debugging to examine when methods are JIT-compiled.

## Source excerpt

One of the primary obstacle we face while scaling our system is Just In Time (JIT) compilation of...