so, when I have data that I need to grab a lot but doesn't change much, I'm all about caching it.
Kian Kamal
·1896 views
hey everyone, ive been thinking about how to best handle data that doesnt update often but gets read a lot. think user settings, product catalogs, or configuration files. we want to hit the database as little as possible for these. what are your go-to caching strategies for this kind of scenario? are you mostly using in-memory caches, distributed caches like redis, or something else entirely? how do you handle cache warming after deployments or restarts? curious to hear your war stories and best practices!
35 comments