redis-cache
Installation
SKILL.md
Redis 缓存开发指南
快速索引
| 功能 | 工具类/注解 | 说明 |
|---|---|---|
| 对象缓存 | RedissonClient / [你的RedisUtils] |
基于 Redisson |
| Spring Cache | @Cacheable/@CachePut/@CacheEvict |
声明式缓存 |
| 分布式锁 | redissonClient.getLock() |
需注入 RedissonClient |
| 限流控制 | Redisson RRateLimiter |
基于 Redisson |
| 原子操作 | Redisson RAtomicLong |
原子递增/递减 |
| 发布订阅 | Redisson RTopic |
消息通信 |
一、Redisson 基础操作
1.1 基础缓存操作
Related skills