title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|
Use an external cache in Azure API Management | Microsoft Docs |
Learn how to configure and use an external cache in Azure API Management. Using an external cache lets you overcome some limitations of the built-in cache. |
api-management |
mikebudzynski |
erikre |
740f6a27-8323-474d-ade2-828ae0c75e7a |
api-management |
conceptual |
04/26/2020 |
apimpm |
In addition to utilizing the built-in cache, Azure API Management allows for caching responses in an external Redis-compatible cache, e.g. Azure Cache for Redis.
Using an external cache allows you to overcome a few limitations of the built-in cache:
- Avoid having your cache periodically cleared during API Management updates
- Have more control over your cache configuration
- Cache more data than your API Management tier allows to
- Use caching with the Consumption tier of API Management
- Enable caching in the API Management self-hosted gateways
For more detailed information about caching, see API Management caching policies and Custom caching in Azure API Management.
What you'll learn:
[!div class="checklist"]
- Add an external cache in API Management
To complete this tutorial, you need to:
This section explains how to create an Azure Cache for Redis in Azure. If you already have an Azure Cache for Redis, within or outside of Azure, you can skip to the next section.
[!INCLUDE redis-cache-create]
For caching, self-hosted gateways rely exclusively on external caches. For caching to be effective self-hosted gateways and the cache they rely on must be located close to each other to minimize lookup and store latencies. Deploying a Redis cache into the same Kubernetes cluster or in a separate cluster nearby are the best options. Follow this link to learn how to deploy Redis cache to a Kubernetes cluster.
Follow the steps below to add an external Azure Cache for Redis in Azure API Management.
Note
The Use from setting specifies an Azure region or a self-hosted gateway location that will use the configured cache. The caches configured as Default will be overridden by caches with a specific matching region or location value.
For example, if API Management is hosted in the East US, Southeast Asia and West Europe regions and there are two caches configured, one for Default and one for Southeast Asia, API Management in Southeast Asia will use its own cache, while the other two regions will use the Default cache entry.
- Browse to your API Management instance in the Azure portal.
- Select the External cache tab from the menu on the left.
- Click the + Add button.
- Select your cache in the Cache instance dropdown field.
- Select Default or specify the desired region in the Use from dropdown field.
- Click Save.
- Browse to your API Management instance in the Azure portal.
- Select the External cache tab from the menu on the left.
- Click the + Add button.
- Select Custom in the Cache instance dropdown field.
- Select Default or specify the desired region in the Use from dropdown field.
- Provide your Azure Cache for Redis connection string in the Connection string field.
- Click Save.
- Browse to your API Management instance in the Azure portal.
- Select the External cache tab from the menu on the left.
- Click the + Add button.
- Select Custom in the Cache instance dropdown field.
- Specify the desired self-hosted gateway location or Default in the Use from dropdown field.
- Provide your Redis cache connection string in the Connection string field.
- Click Save.
Once the external cache is configured in Azure API Management, it can be used through caching policies. See Add caching to improve performance in Azure API Management for detailed steps.
- For more information about caching policies, see Caching policies in the API Management policy reference.
- For information on caching items by key using policy expressions, see Custom caching in Azure API Management.