Skip to main content
Redis 7 is available as an on-demand service for caching, sessions, and message queues.

Install

Installation takes approximately 8–13 seconds.

Connection Details

Redis is configured without authentication by default since it only listens on localhost and is not accessible from outside the pod.

Connecting from Your Application

Node.js

Python

PHP

Command Line Access

SSH into your pod and use redis-cli:

Use Cases

  • Caching — Store frequently accessed data for fast retrieval
  • Sessions — Store user sessions (Express, Django, Laravel)
  • Queues — Use as a message broker with Bull, Celery, or Laravel Queues
  • Real-time — Pub/sub for real-time features
  • Rate limiting — Track request counts per IP/user