You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[CPU time](#cpu-time)| 10 ms |50 ms HTTP request <br/> 50 ms [Cron Trigger](/workers/configuration/cron-triggers/)|30 s HTTP request <br/> 15 min [Cron Trigger](/workers/configuration/cron-triggers/)|
64
-
|[Duration](#duration)|None | none | 15 min [Cron Trigger](/workers/configuration/cron-triggers/) <br/> 15 min [Durable Object Alarm](/durable-objects/api/alarms/)<br/> 15 min [Queue Consumer](/queues/configuration/javascript-apis/#consumer)|
|[CPU time](#cpu-time)| 10 ms | 30 s HTTP request <br/> 15 min [Cron Trigger](/workers/configuration/cron-triggers/)|
64
+
|[Duration](#duration)|No limit| No limit for Workers. <br/>15 min duration limit for [Cron Triggers](/workers/configuration/cron-triggers/), [Durable Object Alarms](/durable-objects/api/alarms/)and [Queue Consumers](/queues/configuration/javascript-apis/#consumer)|
65
65
66
66
### Duration
67
67
@@ -91,12 +91,12 @@ Scheduled Workers ([Cron Triggers](/workers/configuration/cron-triggers/)) have
91
91
92
92
## Cache API limits
93
93
94
-
| Feature | Workers Free |[Bundled](/workers/platform/pricing/#example-pricing-bundled-usage-model)|[Unbound](/workers/platform/pricing/#example-pricing-unbound-usage-model) and [Standard](/workers/platform/pricing/#example-pricing-standard-usage-model)|
- 50 total `put()`, `match()`, or `delete()`calls per-request, using the same quota as `fetch()`.
99
+
Calls/request means the number of calls to `put()`, `match()`, or `delete()`Cache API method per-request, using the same quota as subrequests (`fetch()`).
100
100
101
101
:::note
102
102
@@ -176,7 +176,7 @@ If you make a subrequest from your Worker to a target Worker that runs on a [Cus
176
176
177
177
### How many subrequests can I make?
178
178
179
-
The limit for subrequests a Worker can make is 50 per request on the Bundled usage model or 1,000 per request on the Unbound usage model. Each subrequest in a redirect chain counts against this limit. This means that the number of subrequests a Worker makes could be greater than the number of `fetch(request)` calls in the Worker.
179
+
You can make 50 subrequests per request on Workers Free, and 1,000 subrequests per request on Workers Paid. Each subrequest in a redirect chain counts against this limit. This means that the number of subrequests a Worker makes could be greater than the number of `fetch(request)` calls in the Worker.
180
180
181
181
For subrequests to internal services like Workers KV and Durable Objects, the subrequest limit is 1,000 per request, regardless of the [usage model](/workers/platform/pricing/#workers) configured for the Worker.
0 commit comments