| name |
redis |
| description |
Redis database management. Key-value operations, caching, pub/sub, and data structure commands. |
| metadata |
| clawdbot |
| emoji |
always |
requires |
🔴 |
true |
|
|
|
Redis in-memory database management.
export REDIS_URL="redis://localhost:6379"
- Key-value operations
- Data structures (lists, sets, hashes)
- Pub/Sub messaging
- Cache management
- TTL management
"Get key user:123"
"Set cache for 1 hour"
"Show all keys matching user:*"
"Flush cache"
redis-cli GET key
redis-cli SET key value EX 3600
redis-cli KEYS "pattern*"