Skip to content

Commit 0def463

Browse files
authored
Acrolinx
1 parent 688790b commit 0def463

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

learn-pr/advocates/troubleshoot-optimize-internet-information-services/includes/3-monitor-tune-performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ IIS can cache the response body for a request and serve it to subsequent request
110110
- **Kernel-mode cache:** The response is cached in HTTP.sys memory. Requests are served directly by the kernel driver without involving the IIS worker process. This is the fastest possible path, but it only works for cacheable anonymous responses. In practice that means unauthenticated GET responses. It doesn't support authenticated content or vary-by-query-string scenarios.
111111
- **User-mode cache:** The response is cached in the IIS worker process. Use this mode when you need more flexible caching behavior, such as query-string variation or other dynamic cache rules, but it doesn't have the same speed advantage as kernel-mode.
112112

113-
To configuring a cache rule, make the following changes in web.config or applicationHost.config:
113+
To configure a cache rule, make the following changes in web.config or applicationHost.config:
114114

115115
```xml
116116
<!-- In web.config or applicationHost.config -->

0 commit comments

Comments
 (0)