Garbage Collection - CI/CD用語集の定義
ガベージコレクション(GC)は、プログラムがもはや到達できないオブジェクトを定期的に解放する自動メモリ管理です。ほとんどの leak を防ぎますが、そのポーズは負荷時に調整する価値のあるレイテンシのスパイクを引き起こすことがあります。
関連ガイド
Memory Leak - CI/CD Glossary DefinitionA memory leak is memory a program allocates but never releases, so usage climbs until the process is killed -…
Heap Profiling - CI/CD Glossary DefinitionHeap profiling samples where a program allocates memory and what stays live, helping find leaks and bloat tha…
JIT Compilation - CI/CD Glossary DefinitionJIT compilation translates bytecode into native machine code at run time, optimizing hot paths as the program…