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
Rate Limits, RTDS, and Trading When the Venue Is Degraded
20+ hour, 2+ min ago (304+ words) Part 3 isolated the order adapter for a coming Rust CLOB. Part 4 is the ops layer you need before that cutover. September already showed the failure mode: the book, the TWAP socket, and settlement can go dark together. A 5m bot that…...
Retry Storms and Ghost Jobs: The Celery + LLM Failure Modes Nobody Warns You About
1+ day, 9+ hour ago (310+ words) The demo worked. One request, one clean response, a happy stakeholder. Then you put the same pipeline behind a queue, pointed real traffic…Continue reading on Medium » Retry Storms and Ghost Jobs: The Celery + LLM Failure Modes Nobody Warns You…...
Caching: Why Faster Reads Create Consistency Problems
1+ day, 20+ hour ago (956+ words) A dashboard request can look harmless. The problem appears when hundreds of users ask for the same expensive data at the same time. In Software Engineering Lab 04, the scenario is a workshop dashboard. Without caching, every request runs six database…...
I Rate-Limited an API by Hand. Then I Configured One in a Form Field.
3+ day, 20+ hour 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?
5+ day, 8+ 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
5+ day, 14+ 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
1+ week, 1+ day 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
1+ week, 2+ day 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 🚀
1+ week, 1+ day 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
1+ week, 3+ day 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…...