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

doc: switch from "leaky" to "token" bucket #1790

Merged
merged 1 commit into from
Dec 11, 2024
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
6 changes: 3 additions & 3 deletions content/en/docs/rate-limits.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Rate Limits
slug: rate-limits
date: 2018-01-04
lastmod: 2024-12-05
lastmod: 2024-12-10
show_lastmod: true
---

Expand All @@ -20,8 +20,8 @@ large website please review our [Integration Guide](/docs/integration-guide).

# How Our Rate Limits Work

Limits are calculated, per request, using a [leaky
bucket](https://en.wikipedia.org/wiki/Leaky_bucket#As_a_meter) algorithm. This
Limits are calculated, per request, using a [token
bucket](https://en.wikipedia.org/wiki/Token_bucket) algorithm. This
approach provides flexibility in how you use your allotted requests. You can
either make requests in bursts—up to the full limit—or space out your requests
to avoid the risk of being limited.
Expand Down
Loading