在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
redis
// Redis database management. Key-value operations, caching, pub/sub, and data structure commands.
$ git log --oneline --stat
stars:580
forks:75
updated:2026年2月1日 06:57
SKILL.md
// Redis database management. Key-value operations, caching, pub/sub, and data structure commands.
[HINT] 下载包含 SKILL.md 和所有相关文件的完整技能目录
| name | redis |
| description | Redis database management. Key-value operations, caching, pub/sub, and data structure commands. |
| metadata | {"clawdbot":{"emoji":"🔴","always":true,"requires":{"bins":["curl","jq"]}}} |
Redis in-memory database management.
export REDIS_URL="redis://localhost:6379"
"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*"