🔴
Redis Cache
Cache Developer ToolsInstall Command
npx clawhub@latest install redis-cache
Installation Guide
1
Check Environment
Make sure Node.js 22+ and OpenClaw are installed. Run openclaw --version in your terminal to verify.
2
Run Installation
Run the install command above in your terminal. ClawHub will automatically download and install Redis Cache to the ~/.openclaw/skills/ directory.
3
Verify Installation
Run openclaw skills list to check your installed skills and confirm Redis Cache appears in the list.
4
Configure (Optional)
Follow the configuration instructions in the description below to add skill settings to ~/.config/openclaw/openclaw.json5.
Manual Installation: Copy the Skill folder to
~/.openclaw/skills/ or the skills/ directory in your project root. Make sure the folder contains a SKILL.md file.
Data Operations
Keyspace Management
Performance Monitoring
Detailed Description
Redis Cache provides comprehensive Redis cache management capabilities, from daily key-value operations to cluster-level monitoring and management.
Core Features
- Data Operations: Read and write operations on various Redis data types (String, Hash, List, Set, ZSet)
- Keyspace Management: Browse, search, and batch manage Redis keys with TTL settings
- Performance Monitoring: View memory usage, command statistics, connection counts, and other Redis performance metrics
- Data Import/Export: Import and export data between Redis and files
Configuration
{
skills: {
"redis-cache": {
host: "localhost",
port: 6379,
password: null,
database: 0,
keyPrefix: "",
maxScanCount: 1000
}
}
}
Use Cases
- Check values and TTL of specific cache keys
- Batch clean expired or unused cache keys
- Monitor Redis memory usage and performance metrics
- Debug cache hit rates and caching strategy effectiveness