212 discussions in the community
hey ppl, im wrestling w a common api design choice and wanted to get ur thoughts. when filtering collections of resources, when do u prefer using quer...
Caching speeds things up a lot, especially when you're reading a ton of data. But then there's cache invalidation, right? When the data gets updated, ...
i've been thinking about caching lately in our microservice architecture. we have a few services that are read-heavy, but others are more write-intens...
working on this project with a live news feed. we're getting tons of reads, and keeping it updated for everybody without overloading the backend is a ...
hey everyone, I'm wrestling with cache invalidation in a recent project. We're using Redis for caching API responses, and while it's helped read perfo...
hey everyone, thinking a lot about read performance lately, you know. we have this system, lots of data fetches over and over, and the database is sta...
hey folks, thinking about caching strategies and the dreaded 'cache stampede' problem popped into my head. when a popular cache key expires, and a ton...
Hey everyone, I'm stuck on a classic caching problem and would love your thoughts. We're creating a new feature that really needs cached data. For som...
Hey folks, I've been playing around with Redis for caching and keep seeing mentions of Sorted Sets. I understand the whole unique elements thing with ...
hey everyone, been thinking a lot about caching strategies lately. we're using Redis for a lot of our caching, and for most things, setting a Time-To-...
hey everyone, im wrestling with cache invalidation for content that users themselves create and modify. think user profiles, posts, comments, and so o...
hey everyone im workin on a system with a lot of user stuff posts comments etc that gets updated freq we use redis for caching but im strugglin with a...
so, im trying to make some high-traffic apis better and was thinking about caching strategies. we're currently looking at using `vary` headers to let ...
hey everyone, ive been working on scaling our microservices and hitting some performance bottlenecks. we're using redis for caching, but im curious ab...
i'm building a system to show live stock prices. we're using Redis for caching, but clearing the cache for data that has to be super fresh is turning ...
hey everyone im tryna get a clearer pic of where to best implement caching in our stack. were setting up some new services and thinking bout how to sp...
Hey everyone, I'm trying to figure out cache eviction in a microservices system. We have multiple services using the same Redis instance for caching s...
Cache stampedes are such a pain, you know? That's when a bunch of requests all try to regenerate the same cache entry when it expires. It's a mess. I'...
im working on a microservices architecture and we're thinking about implementing a distributed caching layer. we've looked at Redis and Memcached, but...
Hey everyone, I've been thinking about caching lately, especially when things get complicated. We all know caching is great for performance, but the r...