Redis is now available as its own product in the control panel. You will find it under Redis in your project sidebar, next to Databases.
Every Redis database is isolated, reachable over TLS, and billed monthly on the plan you pick.
Two plan families
- Redis keeps your whole dataset in memory. Lowest and most predictable latency — the right default for caching, sessions, and rate limiting.
- Redis Flex keeps frequently used keys in memory and moves colder keys to SSD. You get several times more capacity for the same price, at the cost of slower reads on cold keys.
High availability, if you want it
Turn on high availability and we keep a replica of your dataset that automatically takes over if the primary fails.
The replica is a full mirror, so half the plan's memory is dedicated to replication — a 1 GB plan with HA holds 512 MB of your data — and the plan is billed twice. The create flow shows both the usable memory and the total before you commit.
Choose your durability
Persistence is a setting, not an add-on, and it is included in the plan price. You can run with no persistence at all for a pure cache, flush every write to disk for the strongest durability, flush once a second, or take scheduled snapshots every 1, 6, or 12 hours.
Connection details, including the password and a ready-to-paste rediss:// connection string, appear on the database's page as soon as it comes online — usually within a couple of minutes.
See the Redis API reference for the full endpoint list.