165 discussions in the community
Hey everyone, I'm trying to figure out the best way to handle caching for some super high-traffic, read-heavy data that doesn't change much. A CDN hel...
hey everyone, been wrestling with a caching strategy for a new service. weve got a lot of read-heavy data that doesnt change too often, but also some ...
I'm building a new feature that needs to update lots of clients all at once, in real-time. My first idea was WebSockets, but I'm curious about the bes...
hey every1 im workin on a project with a lot of static assets like images, css, and js and were starting to see some page load times creep up, esp for...
Hey everyone, I've been mulling over cache invalidation quite a bit lately. It really seems like the most difficult part. We've tinkered with a few me...
hey everyone im trying to decide on a caching strategy for a new project we expect a good amount of read traffic but writes wont be as frequent both r...
So I've been chewing on this API caching thing, right? You know, the kind where the data just won't sit still. We've got Redis for our user stuff, and...
Hey everyone, I'm building a new system that needs to do a bunch of background stuff, like resizing images and sending lots of emails at once. We're t...
hey folks, im working on a system that heavily relies on fetching user profile data. we're seeing a lot of repeated reads for the same profiles, so ca...
hey everyone, i've been thinking a lot about cache invalidation lately. weve got a pretty standard setup with redis for caching api responses, but kee...
hey everyone, i've been thinking about how we handle writes when caching is involved. write-through makes sure data is consistent, writing to both the...
hey all, we've been having some problems with cache stampedes, you know, when lots of requests for the same expired cache key hit the database all at...
Hey everyone, I've been thinking a lot about cache invalidation lately. We have several caching layers in our system, and keeping data consistent with...
Hey everyone, I've been thinking a lot about cache invalidation lately. We're using Redis for caching user session data, and it's been working pretty ...
We've been adding a lot of caching lately to speed up our reads, and it's working great! But I was thinking about what happens when the cache layer it...
ran into a cache stampede situation yesterday. A popular item expired, and suddenly thousands of requests hit the origin server simultaneously. It bro...
Hey everyone, I'm trying to figure out the best way to shard a database for an app that's getting pretty big. We have tons of data, and our current se...
hey folks im lookin to optimize our caching layer and wanted to get some opinions on eviction policies we're seein some performance bottlenecks and i ...
We're building out a new set of microservices, and we're really counting on caching to speed things up and take some pressure off the database. The tr...
hey all, i've been thinking a lot about caching lately, especially how to keep data fresh across a microservices architecture. we've got services a, b...