Labsco
openai logo

render-keyvalue

✓ Official4,081

by openai · part of openai/plugins

Provisions and configures Render Key Value (Redis-compatible Valkey 8) instances for caching, session storage, and job queues. Use when the user needs Redis, Key Value, Valkey, a cache, session store, job queue backend, or needs to configure maxmemory policy, ipAllowList, connection strings, or internal vs external access. Trigger terms: Key Value, Redis, Valkey, cache, session store, REDIS_URL, maxmemory, ipAllowList, allkeys-lru, noeviction.

🧩 One of 7 skills in the openai/plugins package — works on its own, and pairs well with its siblings.

This is the playbook your agent receives when the skill activates — you don't need to read it to use the skill, but it's here to audit before installing.

Render Key Value

Render Key Value provides low-latency, Redis-compatible in-memory storage running Valkey 8. Use it as a shared cache, session store, or job queue backend. Compatible with virtually all Redis client libraries.

When to Use

  • Adding a cache or session store to a web app
  • Wiring a job queue backend for Celery, Sidekiq, BullMQ, Asynq, or Oban
  • Choosing the right maxmemory policy (cache vs queue)
  • Configuring ipAllowList in Blueprints (required field)
  • Connecting via internal vs external URLs
  • Troubleshooting auth failures or connection refused errors

For background worker setup and queue framework patterns, see render-background-workers. For Blueprint authoring, see render-blueprints.

Key Concepts

Valkey 8 (not Redis)

New instances run Valkey 8, an open-source Redis fork. It is a drop-in replacement for Redis—existing Redis client libraries work without changes. Legacy instances (created before Feb 2025) run Redis 6.

Connection URLs

Every instance has two URLs:

URL typeWhen to useAuth required
Internal (redis://red-xxx:6379)From Render services in the same regionNo (by default)
External (rediss://red-xxx:6379)From outside Render (local dev, CI)Always

Always prefer the internal URL for production services—lower latency, no TLS overhead, communicates over the private network.

External connections are disabled by default. Enable them by adding IP ranges to the access control list in the Dashboard.

Internal authentication

By default, internal connections are unauthenticated. You can require auth for internal connections in the Dashboard for compliance or extra security. This changes the internal URL to include credentials:

redis://default:PASSWORD@red-xxx:6379

Warning: Enabling internal auth breaks existing unauthenticated connections. Migrate clients to the authenticated URL first.

Maxmemory Policy

Critical decision. Choose based on your use case:

Use casePolicyWhy
Cache (can lose data)allkeys-lruEvicts least-recently-used keys to free space
Job queue (cannot lose data)noevictionReturns error on writes when full; never drops keys
Session storeallkeys-lru or volatile-lruSessions can be regenerated; LRU is safe

All available policies:

PolicyBehaviorMemory fills up?
allkeys-lruEvict any key by LRUNo
noevictionError on writes when fullYes
volatile-lruEvict keys with TTL by LRUYes
volatile-lfuEvict keys with TTL by LFUYes
allkeys-lfuEvict any key by LFUNo
volatile-randomEvict random keys with TTLYes
allkeys-randomEvict any random keyNo
volatile-ttlEvict keys nearest to expiryYes

Data Persistence

  • Paid instances: Disk-backed, appendfsync everysec. You may lose up to 1 second of writes on interruption.
  • Free instances: No disk persistence. Data is lost on restart or upgrade.
  • Upgrading from Free: All data is lost during the upgrade because Free instances have no disk.

Connection Examples

See references/connection-examples.md for client code in Node.js (ioredis, node-redis), Python (redis-py), Ruby (redis-rb, Sidekiq), and Go.

References

DocumentContents
references/connection-examples.mdClient code for Node.js, Python, Ruby, Go
references/troubleshooting.mdAuth errors, connection refused, memory full, migration from Redis 6
  • render-background-workers — Queue consumer setup with Celery, Sidekiq, BullMQ
  • render-blueprints — Full render.yaml schema, fromService patterns
  • render-networking — Private network, internal URLs
  • render-env-vars — Wiring REDIS_URL and other connection vars