Skip to content

Commit f7b0577

Browse files
authored
[Workers] Rate Limiting GA (#24334)
1 parent 93ea676 commit f7b0577

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

src/content/docs/workers/runtime-apis/bindings/rate-limit.mdx

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
---
22
pcx_content_type: configuration
33
title: Rate Limiting
4-
head: []
54
description: Define rate limits and interact with them directly from your Cloudflare Worker
6-
sidebar:
7-
badge:
8-
text: Beta
9-
105
---
116

127
import { TabItem, Tabs, WranglerConfig } from "~/components"
@@ -20,16 +15,10 @@ You can use it to enforce:
2015
* Resource-specific or path-specific limits (ex: limit per API route)
2116
* Any combination of the above
2217

23-
The Rate Limiting API is backed by the same infrastructure that serves the [Rate limiting rules](/waf/rate-limiting-rules/) that are built into the [Cloudflare Web Application Firewall (WAF)](/waf/).
24-
25-
:::caution[The Rate Limiting API is in open beta]
26-
27-
28-
* You must use version 3.45.0 or later of the [Wrangler CLI](/workers/wrangler)
29-
30-
We want your feedback. Tell us what you'd like to see in the [#workers-discussions](https://discord.com/channels/595317990191398933/779390076219686943) or [#workers-help](https://discord.com/channels/595317990191398933/1052656806058528849) channels of the [Cloudflare Developers Discord](https://discord.cloudflare.com/). You can find the an archive of the previous discussion in [#rate-limiting-beta](https://discord.com/channels/595317990191398933/1225429769219211436)
31-
18+
The Rate Limiting API is backed by the same infrastructure that serves [rate limiting rules](/waf/rate-limiting-rules/).
3219

20+
:::note
21+
You must use version 3.45.0 or later of the [Wrangler CLI](/workers/wrangler).
3322
:::
3423

3524
## Get started
@@ -41,7 +30,6 @@ First, add a [binding](/workers/runtime-apis/bindings) to your Worker that gives
4130
```toml
4231
main = "src/index.js"
4332

44-
# The rate limiting API is in open beta.
4533
[[unsafe.bindings]]
4634
name = "MY_RATE_LIMITER"
4735
type = "ratelimit"

0 commit comments

Comments
 (0)