redis

Installation
SKILL.md

Redis

Build fast, scalable applications with Redis as a cache, message broker, session store, or real-time data engine.

Setup

Docker (quickstart)

# Redis 7 with persistence
docker run -d --name redis -p 6379:6379 \
  -v redis-data:/data \
  redis:7-alpine redis-server --appendonly yes --requirepass "your-password"

Connection

"""redis_client.py — Redis connection with connection pooling."""
Related skills
Installs
2
GitHub Stars
48
First Seen
Mar 13, 2026