0

The Azure sites take a long time to re-cache and "warm up" after the deployment is complete. I want something to use Azure Devops to programmatically hit the CMS (content editor and experience editor) as well as the CD server to begin the re-caching process and make the environments usable again as quickly as possible.

2
  • Are you using App Services or VMs? Commented Nov 25, 2022 at 13:37
  • I am using App Services. Commented Nov 28, 2022 at 6:10

1 Answer 1

2

One way to do this is to use the section in your web.config.

https://learn.microsoft.com/en-us/iis/configuration/system.webserver/applicationinitialization/

This will load the pages you define when the app starts, so if you choose those pages wisely you can fill some caches.

Example:

<system.webServer> <applicationInitialization remapManagedRequestsTo="initializing.html" doAppInitAfterRestart="true" skipManagedModules="true"> <add initializationPage="/" hostName="www.xxx.com"/> <add initializationPage="/en/products" hostName="www.xxx.com"/> </applicationInitialization> 

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.