Ahead-of-Time Compilation - CI/CD用語集の定義
AOT(Ahead-of-Time)コンパイルは、実行時ではなくビルド時にネイティブの機械語コードを生成し、JIT のウォームアップをなくして即座で予測可能な起動を実現します - serverless のコールドスタートや CLI ツールで重宝されます。
関連ガイド
JIT Compilation - CI/CD Glossary DefinitionJIT compilation translates bytecode into native machine code at run time, optimizing hot paths as the program…
Transpiler - CI/CD Glossary DefinitionA transpiler translates source from one high-level language to another - TypeScript to JavaScript, modern JS…
Runtime vs Build-Time - CI/CD Glossary DefinitionRuntime vs build-time distinguishes work done while compiling or packaging from work done when the program ru…