122 discussions in the community
hey everyone, ive been thinking a lot about caching recently, especially for our read-heavy internal APIs. we currently use Memcached, and its been so...
Hey everyone, I've been thinking about connection pooling a lot lately, especially with our services scaling up. We're running into some issues with c...
hey everyone, ive been thinking about cache performance lately. we're seeing some latency spikes right after deployments or when traffic suddenly spik...
I'm building a new service, and honestly, I really want to just slap a cache on absolutely everything. Things are running okay right now, but I'm won...
hey everyone, weve been talking a lot about caching lately, and i wanted to spark a discussion about where we put our caches. weve got some opportuni...
hey ev1, im workin on a system where we need to keep a distributed cache fresh w data from a primary db. im weighin 2 main approaches for invalidation...
So, I've been pondering caching and, you know, when to kick stuff out. LRU is everywhere, right, but I've noticed that sometimes LFU or even just timi...
hey folks, i've been thinking a lot about caching lately, specifically around invalidation. we all know `ttl` is the simplest, but what happens when y...
Hey everyone, I've been thinking a lot about managing database connections efficiently, especially in high-traffic scenarios. Connection pooling seems...
hey folks, im trying to nail down a consistent strategy for cache invalidation across our services. were using redis for a lot of our caching, esp for...
hey everyone, i'm trying to nail down the best caching approach for a new internal API. we're dealing with data that's read frequently but updated les...
Hey everyone, I'm trying to figure out the best caching strategies for our really busy web app. We've got tons of static files, plus some content that...
hey all, so im building a new feature for a game, it needs a leaderboard that updates instantly. we think lots of people will be writing scores (game...
So, I've been mulling over caching, particularly for distributed systems. We're currently leaning on Redis as our main cache, and honestly, it's been ...
We've all been there, right? You put in a caching layer and then waste ages fighting with cache invalidation. It's so easy to mess up and end up with ...
hey folks, i've been thinking a lot lately about how we store and manage state in our systems. right now, we're mostly using a pretty standard relatio...
Hey everyone, we've been thinking about our caching strategy, and I'm curious about other perspectives. We're using Redis a lot for caching API respon...
hey everyone, I've been thinking about how we approach caching in our systems. Weve got a few different places where were caching data, from database ...
hey folks, im trying to nail down the best ways to keep data in sync across multiple clients in real-time. we're building a collaborative editing tool...
We all know caching is great for speeding things up and reducing server load. The common advice is to cache API responses. But I'm curious about the t...