Redis / Valkey Features
In-memory Storage
Redis / Valkey provides in-memory storage for your applications.
Caching
Redis / Valkey provides caching for your applications.
Session Storage
Redis / Valkey provides session storage for your applications.
Pub/Sub Messaging
Redis / Valkey provides pub/sub messaging for your applications.
Rate Limiting
Redis / Valkey provides rate limiting for your applications.
Queues
Redis / Valkey provides queues for your applications.
How to Integrate Redis / Valkey
Follow these steps to add this integration to your CreateOS project
Step 1
Create Valkey instance in CreateOS Dashboard
Step 2
Copy the REDIS_URL connection string
Step 3
Add REDIS_URL to environment variables
Step 4
Install ioredis or redis client
Step 5
Connect and start using Redis commands
Step 6
Implement caching or real-time features
Environment Variables
REDIS_URL=your_value_hereREDIS_HOST=your_value_hereREDIS_PORT=your_value_hereREDIS_PASSWORD=your_value_hereRelated Integrations
Redis / Valkey FAQ
Valkey is the open-source Redis fork. It's fully Redis-compatible, so existing Redis code works without changes.
Use Redis for caching (reduce database load), sessions, rate limiting, real-time features, and job queues. It's much faster than disk-based databases.