redis
✓Verified·Scanned 2/17/2026
Redis database management. Key-value operations, caching, pub/sub, and data structure commands.
from clawhub.ai·v77d2263·685 B·0 installs
Scanned from 1.1.0 at 77d2263 · Transparency log ↗
$ vett add clawhub.ai/0xterrybit/redis
Redis 🔴
Redis in-memory database management.
Setup
export REDIS_URL="redis://localhost:6379"
Features
- Key-value operations
- Data structures (lists, sets, hashes)
- Pub/Sub messaging
- Cache management
- TTL management
Usage Examples
"Get key user:123"
"Set cache for 1 hour"
"Show all keys matching user:*"
"Flush cache"
Commands
redis-cli GET key
redis-cli SET key value EX 3600
redis-cli KEYS "pattern*"