www/apps/cloud/app/redis/page.mdx
export const metadata = {
title: Redis,
}
In this guide, you'll learn about the managed Redis service that Medusa provides as part of your project environments on Cloud.
<Note>The Redis service is only available for Launch, Scale, and Enterprise plans. If you're on the Develop plan, please upgrade to start using Redis in your Cloud projects.
</Note>Medusa provisions and manages Redis servers for each of your environments on Cloud.
Each project environment has a dedicated Redis server. These Redis servers are entirely isolated from one another, similar to the Postgres databases.
Medusa automatically configures your Medusa application hosted on Cloud to use Redis-based Infrastructure Modules, including:
So, you don't need to configure any of these modules and providers or set up Redis manually. Also, if you have them configured in medusa-config.ts, remove them to avoid conflicts.
If you're using a Medusa version before v2.7.0, contact support for assistance in configuring the Redis modules.
</Note> <Note title="Tip">The Caching Module was introduced in Medusa v2.11.0 to replace the deprecated Cache Module.
</Note>Since Cloud is a managed service, you can't directly access your Redis instance or its configurations. Medusa also doesn't expose the Redis instance connection or configuration details.
If you need to customize the Redis configurations for any of the Redis modules and providers in your Cloud project, you must host and manage your own Redis instance externally.
Then, configure the modules and providers you're overriding in your medusa-config.ts file to connect to your external Redis instance. Refer to the documentation for each module for more details on how to configure it.
To set the connection URL of your external Redis instance, refer to the Manage Environment Variables guide to learn how to add environment variables. You can then use these variables in your medusa-config.ts file to connect to your Redis instance.