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

  1. Identify the use case - Caching, session store, queue, pub/sub, or data structure
  2. Choose the data structure - String for simple values, Hash for objects, List for queues, Sorted Set for rankings
  3. Implement with appropriate commands - Use the patterns below
  4. Configure persistence and replication - Based on durability requirements

Quick-Start Example: Caching with TTL

Related skills

More from partme-ai/full-stack-skills

Installs
26
GitHub Stars
379
First Seen
Jan 29, 2026