This visual execution shows how nginx's limit_req with burst and nodelay options work. Each incoming request checks if tokens are available in the token bucket. If tokens exist, the request is allowed immediately and tokens decrease. If no tokens are available, burst allows extra requests to queue temporarily. When nodelay is on, these burst queued requests are allowed immediately without waiting. The execution table tracks tokens and burst queue size per request. When the burst queue is full and no tokens remain, requests are delayed or rejected. The variable tracker shows tokens and burst queue changes over time. Key moments clarify why burst queue fills and how nodelay affects request handling. The quiz tests understanding of burst queue size, token refill timing, and nodelay behavior. The snapshot summarizes the core nginx rate limiting concepts with burst and nodelay options.