Overview
Automatic memory management that reclaims memory occupied by objects no longer referenced by the program.
More in Software Engineering
Feature Flag
Development PracticesA software development technique allowing features to be enabled or disabled at runtime without deploying new code.
Test-Driven Development
Development PracticesA development practice where failing tests are written before the code that makes them pass.
Canary Deployment
Paradigms & PatternsA deployment strategy where changes are gradually rolled out to a small subset of users before full deployment.
Parallelism
ArchitectureThe simultaneous execution of multiple computations across multiple processors or cores.
Webhook
Paradigms & PatternsAn HTTP callback that delivers real-time notifications from one application to another when a specified event occurs.
Dependency Injection
Paradigms & PatternsA design pattern where dependencies are provided to a component rather than created within it.
Memory Leak
Paradigms & PatternsA type of resource leak where a program fails to release memory that is no longer needed.
Event Loop
Paradigms & PatternsA programming construct that waits for and dispatches events or messages in a program.