
batch-processingDataLoader pattern for batch processing to solve N+1 query problems. Reduces database/API calls from N+1 to 2 by batching and caching.
http-retry-circuit-breakerImplements HTTP request retries with exponential backoff and a configurable circuit breaker to reduce failures and prevent cascading errors.
websocket-reconnectWebSocket connection management with exponential backoff + jitter retry, heartbeat detection, and circuit breaker pattern. Use when you need reliable WebSock...