Redis

Manage Redis via the redis-cli. Use when interacting with Redis caches, queues, or key-value stores.

fworks-tech Updated

File contents

redis-cli

Use redis-cli to interact with Redis instances.

Common Commands

Connection

  • Connect: redis-cli -h <host> -p <port>
  • Authenticate: AUTH <password>
  • Ping: PING

Key Operations

  • Get value: GET <key>
  • Set value: SET <key> <value>
  • Delete key: DEL <key>
  • Check existence: EXISTS <key>
  • Set with expiry: SETEX <key> <seconds> <value>

Inspection

  • List all keys: KEYS <pattern>
  • Key type: TYPE <key>
  • TTL: TTL <key>
  • Memory usage: MEMORY USAGE <key>
  • Info: INFO

Notes

  • KEYS * is blocking on production — use SCAN for large datasets
  • Default port is 6379

fworks-tech/agenthood/tree/main/skills/redis commit 4d108920d7

Frequently asked questions

npx skillmds@latest add fworks-tech/redis