181 discussions in the community
i've been wrestling with some awful cache stampedes lately, you know, when a popular item's cache goes stale. it's like a thousand requests all hit th...
i'm thinking about the best ways to keep caches up-to-date without causing too much overhead. time-based expiration is simple, but not always accurate...
hey everyone, ive been thinking a lot about caching lately, especially when it comes to data that's unique to each user. like, user preferences, perso...
we've been using our own caching and database read replicas to speed things up, and it's worked pretty well. but i'm wondering when we should start th...
Hey folks, I've been thinking a lot about caching lately, especially how to keep data fresh without causing too much overhead. We're using Redis for o...
hey all, i've been wondering about our message queues. when you have a bunch of microservices, is it easier to give each one its own queue, or should ...
hey folks, i've been thinking a lot about cache time-to-live (TTL) values lately, especially for user-generated content that doesnt change *too* often...
hey everyone, been thinking a lot about caching lately, especially when dealing with data that changes frequently. we've got a few services where the ...
hey everyone im wrestling w cache invalidation in a distributed system weve got multiple services and a shared redis cache when data changes in one se...
hey everyone, im wondering how you all handle lots of reads. we have tons of static assets and some api data that gets accessed a lot, and its really ...
hey everyone, looking to get some thoughts on scaling message queues. we're using Kafka and seeing some pretty big spikes in traffic. beyond just addi...
hey everyone, i'm working on a system with a really read-heavy API and we're looking at caching to improve performance. we've considered in-memory cac...
Hey everyone, I'm working on a project and we need to add a caching layer to speed things up. I've been looking into Redis and Memcached, but I'm not ...
we've been using Redis for caching API responses and some computed data for a while now, and it's been great for performance. our current invalidation...
ive been building out a new microservices architecture, and while the benefits are clear, im starting to hit a wall with inter-service communication l...
We all know how much caching helps speed things up when reading data. We use Redis a ton for session info, API answers, and even some calculated stuff...
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...