Install
Caching, Queues & Background Jobs
Caching strategies, job queues, retries, and background processing patterns.
- 4 Tracked terms
- Last 30 days Feed window
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
Latest in Caching, Queues & Background Jobs
I Rate-Limited an API by Hand. Then I Configured One in a Form Field.
18+ hour, 20+ min ago (285+ words) My hotel booking backend has an GET endpoint that has no rate limiting at all, nothing stops a client... Tagged with api, backend, security....
Lazy vs Eager Cache Population: Which Caching Strategy Should You Use?
2+ day, 5+ hour ago (30+ words) Learn the difference between lazy and eager cache population, their performance trade-offs, and how to choose the right caching …...
Cache Invalidation: Three Patterns and the Cost of Getting It Wrong
2+ day, 12+ hour ago (278+ words) A version-control service I worked on kept a small list in Redis: which version of the code bundle... Tagged with caching, distributedsystems, backend, consistency....
A cache with no way back to the source
5+ day, 16+ hour ago (346+ words) Checkout deliberately asks for nothing but a URL — no title field on the add-listing form. So a listing's name doesn't exist yet the moment money lands; it's filled in later, two different ways depending on the listing: That part works....
I Argued With an Interviewer About Global Rate Limiting. Neither of Us Were Right
5+ day, 21+ hour ago (1397+ words) Global rate limiting has a conservation law. Once you see it, most of the architectural debate disappears. The interviewer suggested a broadcast mechanism to share counts between regions. I pushed back. It sounded over-engineered for rate limiting: a lot of…...
Lazy Loading vs. Prefetching: Best Practices for TableViews 🚀
5+ day, 18+ hour ago (26+ words) When you’re dealing with large datasets in iOS — feeds, chat histories, search results — performance stops being optional. Two …...
Your Cache Is Part of the Security Model
6+ day, 21+ hour ago (418+ words) This is Part 4 of Security Infrastructure in Practice, a series about what happens when security design meets production systems. Caches are supposed to make authorization faster. They can also keep an old permission alive after the source of truth has…...
Agent-Cache: Multi-Tier LLM Caching for Valkey and Redis
1+ week, 1+ hour ago (666+ words) Agent loops burn tokens and clock cycles on repeated work. The same LLM prompt fires twice, the same tool call fetches identical data, and session state gets reconstructed from scratch on every request. Agent-cache solves this with a three-tier caching…...
I Thought Redis Would Save My API. Just 500 Requests Proved Me Wrong.
1+ week, 8+ hour ago (243+ words) As our series continues, Deep-Dive Backend Systems Roadmap. I created the simplest weather API... Tagged with webdev, distributedsystems, redis, programming....
Redis Rate Limits for LLM API Keys and Tenant Quotas
1+ week, 11+ hour ago (822+ words) This post was created with AI assistance and reviewed for accuracy before publishing. Rate limiting a normal API protects your servers. Rate limiting an LLM API protects your bank account. The difference matters, because it changes what you are counting…...