Files
nexus/wiki/concepts/Redis缓存.md

921 B

title, type, tags, sources, last_updated
title type tags sources last_updated
Redis缓存 concept
software-engineering
redis
caching
performance
database
开发经验与项目规范整理文档
2025-12-30

Definition

Redis 缓存 是利用 Redis 作为内存数据存储来缓存热点数据,从而提升系统读性能、降低数据库压力的技术方案。

Core Principles

  • 作为缓存层极大提升系统「读性能」
  • 降低数据库访问压力
  • 提供计数、锁、队列、Session 等能力
  • 让系统更快、更稳定、更抗压

Source Reference

来源:开发经验与项目规范整理文档