ms-dot-net.hashnode.devGarbage Collector (GC)Definition: It is a background process that runs undeterministically and cleans unreferenced managed objects from memory. The above definition has 4 marked sections. Let’s discuss about theme first. Background: The GC runs in the background in a sepa...Oct 22, 2025·4 min read
core-system-d.hashnode.devDesign A Rate LimiterIn a network system, a rate limiter is used to control the rate of traffic sent by a client or service. Rate limiting can be implemented using different algorithms. The algorithm to be used depends on the application's rate-limiting requirements. The...Oct 11, 2025·4 min read
core-system-d.hashnode.devRate Limiting AlgorithmsRate Limit: The rate limit is a restriction that controls the number of requests, actions, or operations a user, system, or application can perform within a specific time period. It is commonly used in computer systems, APIs, and networks to: Preven...Sep 17, 2025·4 min read