redis
Installation
SKILL.md
When to use this skill
Use this skill whenever the user wants to:
- Use Redis data structures (string, hash, list, set, sorted set) and commands
- Implement caching, session storage, rate limiting, or message queues with Redis
- Configure persistence (RDB/AOF), replication, Sentinel, or Redis Cluster
- Write Lua scripts for atomic Redis operations
- Connect via redis-cli or language drivers (connection pooling, serialization)
How to use this skill
Workflow
- Identify the use case - Caching, session store, queue, pub/sub, or data structure
- Choose the data structure - String for simple values, Hash for objects, List for queues, Sorted Set for rankings
- Implement with appropriate commands - Use the patterns below
- Configure persistence and replication - Based on durability requirements