Skip to content

Commit c96e9ea

Browse files
committed
Remove cache expire mentions again
1 parent c63bddd commit c96e9ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-aspnet-core.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ The configuration refresh is triggered by the incoming requests to your web app.
134134
| TestApp:Settings:FontColor | lightGray |
135135
| TestApp:Settings:Message | Data from Azure App Configuration - now with live updates! |
136136

137-
1. Refresh the browser a few times. When the cache expires after 30 seconds, the page shows with updated content.
137+
1. Refresh the browser a few times. When the refresh interval elapses after 30 seconds, the page shows with updated content.
138138

139139
![Launching updated quickstart app locally](./media/quickstarts/aspnet-core-app-launch-local-after.png)
140140

articles/azure-app-configuration/enable-dynamic-configuration-dotnet-core-push-refresh.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.author: malev
1717

1818
The App Configuration .NET client library supports updating configuration on demand without causing an application to restart. An application can be configured to detect changes in App Configuration using one or both of the following two approaches.
1919

20-
1. Poll Model: This is the default behavior that uses polling to detect changes in configuration. Once the cached value of a setting expires, the next call to `TryRefreshAsync` or `RefreshAsync` sends a request to the server to check if the configuration has changed, and pulls the updated configuration if needed.
20+
1. Poll Model: This is the default behavior that uses polling to detect changes in configuration. Once the refresh interval of a setting elapses, the next call to `TryRefreshAsync` or `RefreshAsync` sends a request to the server to check if the configuration has changed, and pulls the updated configuration if needed.
2121

2222
1. Push Model: This uses [App Configuration events](./concept-app-configuration-event.md) to detect changes in configuration. Once App Configuration is set up to send key value change events to Azure Event Grid, the application can use these events to optimize the total number of requests needed to keep the configuration updated. Applications can choose to subscribe to these either directly from Event Grid, or through one of the [supported event handlers](../event-grid/event-handlers.md) such as a webhook, an Azure function, or a Service Bus topic.
2323

0 commit comments

Comments
 (0)