文章目录
https://x.com/bytebytego/status/1756559741004997046/photo/1
Read Strategies:
Cache aside z
Read through
分别指缓存未命中时主动加载数据到缓存,以及直接通过缓存层读取数据。
Write Strategies:
Write around
Write back
Write through
- 写策略中的 “Write around” 指直接写入数据库而非缓存,以减少缓存无效化的开销;“Write back” 指先写入缓存后定期写入数据库,以提高性能;“Write through” 指同时写入缓存和数据库,以保证数据的一致性。
- 不同的缓存策略可以根据实际需求组合使用,以达到最佳的性能和数据一致性平衡。