Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport v11-branch] Update page-caching.md #705

Merged
merged 2 commits into from
Nov 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/page-caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ The CDN cache is the fastest cache, and has typical response times around 20ms.
All pages are cached by default, with the following exclusions:

- All `POST` requests are not cached
- Any requests with cookies matching the patterns `wordpress_*`, `wp-*`, `wp_*`, `comment_*`, `hm_*` and `altis_*` are not cached.
- Any requests with the `Authentication` HTTP header will not be cached.
- Any requests containing cookies with names that match the following patterns are not cached:
- `wordpress_*`
- `wp-*`
- `wp_*`
- `comment_*`
- `hm_*`
- `altis_*`
- Any requests with the `Authorization` HTTP header will not be cached.
- Any response with the `Cache-Control: no-cache` HTTP header will not be cached.
- Any response with no content is not cached.
- Any request to `xmlrpc.php`, `wp-cron.php` or `wp-app.php` are not cached.
Expand Down