[Build and Deploy Staging Site] Publish from microsoft/azuretipsandtricks-private:main/src/blog

This commit is contained in:
erjuntun75 2022-06-29 16:29:40 +00:00
Родитель 23185eef7b
Коммит 5beaac0c3d
1 изменённых файлов: 0 добавлений и 27 удалений

Просмотреть файл

@ -1,27 +0,0 @@
---
type: post
title: "Tip 143 - Keep your Azure Web App Hydrated and Responsive"
excerpt: "Learn how to easily keep your Azure Web App hydrated and responsive"
tags: [Web]
date: 2018-07-23 17:00:00
---
::: tip
:bulb: Learn more : [App Service Documentation](https://docs.microsoft.com/azure/app-service?WT.mc_id=docs-azuredevtips-azureappsdev).
:::
### Keep your Azure Web App Hydrated and Responsive
If you have ever noticed that after a publish or restart of your Azure web app it might load slowly the first time, then when you refresh with F5 it is ok again.
If you've ever noticed this behavior an option **might** be to go inside of the **Application Settings** for the web app in the portal, and activating **Always On**, which keeps your web hydrated and responsive.
<img :src="$withBase('/files/azurewebappalwayson1.png')">
According to the information icon:
> Indicates that your web app needs to be loaded at all times. By default, web apps are unloaded after they have been idle. It is recommended that you enable this option when you have continuous web jobs running on the web app.
Keep in mind that you will not be able to turn this feature on when using the **Free version** of Azure App Services. It is only available in **Basic** or **Standard** plans.
To recap, if your app runs continuous WebJobs or runs WebJobs triggered using a CRON expression, you should enable **Always On**, or the web jobs may not run reliably.