caching-strategist-redis
Installation
SKILL.md
Caching Strategist (Redis)
This skill focuses on reducing response times by storing frequently accessed data in high-speed memory.
Instructions
- Identify expensive operations (API calls, complex DB queries).
- Implement a 'Cache Aside' or 'Write Through' strategy.
- Set appropriate Expiration (TTL) times for different data types.
- Manage cache invalidation when data changes.
- Use Redis for rate limiting or distributed session management.
Examples
- "Cache the results of a heavy dashboard query for 5 minutes."
- "Use Redis to limit API requests to 100 per minute per user."