Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions src/content/docs/cache/how-to/purge-cache/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ If versioning is active on your zone and multiple environments are configured, y

<FeatureTable id="cache.purge_cache" />

### Hostname, tag, prefix URL, and purge everything limits

The current purge limits are applied per **account**:

<FeatureTable id="cache.purge_limits" />

### Single-file purge limits

The current purge limits are applied per **account**:

<FeatureTable id="cache.single_file_purge" />

### Token bucket rate limiting

Cloudflare uses token bucket rate limiting to limit the number of purge requests flowing through the system at any given time, ensuring a steady and manageable flow.
Expand Down
54 changes: 41 additions & 13 deletions src/content/plans/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -441,20 +441,48 @@
"pro": "URL, Hostname, Tag, Prefix, and Purge Everything",
"biz": "URL, Hostname, Tag, Prefix, and Purge Everything",
"ent": "URL, Hostname, Tag, Prefix, and Purge Everything"
}
}
},
"purge_limits": {
"title": "Purge limits for hostname, tag, prefix URL, and purge everything.",
"link": "/cache/how-to/purge-cache/",
"properties": {
"availability": {
"title": "Requests",
"summary": "Available on all plans",
"free": "5 requests per minute",
"pro": "5 requests per second",
"biz": "10 requests per second",
"ent": "50 requests per second"
},
"limits_bucket": {
"title": "Bucket size",
"free": "25",
"pro": "25",
"biz": "50",
"ent": "500"
},
"limits": {
"title": "Purge limits (tags, prefix URL, hostname, and purge everything). The limits are per account.",
"free": "5 requests per minute with a bucket size of 25, supporting up to 100 operations per request.",
"pro": "5 requests per second with a bucket size of 25, supporting up to 100 operations per request",
"biz": "10 requests per second with a bucket size of 50, supporting up to 100 operations per request",
"ent": "50 requests per second with a bucket size of 500, supporting up to 100 operations per request"
},
"limits_single_file": {
"title": "Purge limits (single file purge). The limits are per account.",
"free": "800 URLs per second",
"pro": "1500 URLs per second",
"biz": "1500 URLs per second",
"ent": "3000 URLs per second"
"limits_operations": {
"title": "Max operations per request",
"free": "100",
"pro": "100",
"biz": "100",
"ent": "100"
}
}
},
"single_file_purge": {
"title": "Single file purge",
"link": "/cache/how-to/purge-cache/purge-by-single-file/",
"properties": {
"availability": {
"title": "URLs",
"summary": "Available on all plans",
"free": "800 URLs per second",
"pro": "1500 URLs per second",
"biz": "1500 URLs per second",
"ent": "3000 URLs per second"
}
}
},
Expand Down