Redis 7 is available as an on-demand service for caching, sessions, and message queues.Documentation Index
Fetch the complete documentation index at: https://docs.instapods.com/llms.txt
Use this file to discover all available pages before exploring further.
Install
- CLI
- Dashboard
Connection Details
| Field | Value |
|---|---|
| Host | localhost |
| Port | 6379 |
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 useredis-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