About 135,000 results
Open links in new tab
  1. Token Bucket Algorithm - GeeksforGeeks

    Oct 3, 2025 · Token Bucket algorithm is a widely used method in computer networks for traffic shaping and rate limiting. It controls the amount of data transmitted over time, ensuring that traffic follows a …

  2. Token bucket - Wikipedia

    The token bucket is an algorithm used in packet-switched and telecommunications networks. It can be used to check that data transmissions, in the form of packets, conform to defined limits on bandwidth …

  3. 24 Token Bucket Rate Limiting - Loyola University Chicago

    The idea behind a token bucket is that there is a notional bucket somewhere, being filled at a steady rate with tokens (or, if more divisibility is needed, with fluid); any overflow from the bucket is discarded.

  4. Token Bucket Algorithm: A Comprehensive Guide - DEV Community

    Oct 15, 2024 · The Token Bucket Algorithm is a widely-used rate-limiting technique in networking and computer systems to manage traffic flow and ensure consistent performance.

  5. What Is Token Bucket Algorithm? | phoenixNAP IT Glossary

    Jun 26, 2025 · What Is the Token Bucket Algorithm? The token bucket algorithm is a network traffic management technique that controls the amount and rate of data transmitted over a network. It …

  6. Token Bucket Algorithm: Core Mechanics and Burst Control

    Token Bucket is a rate limiting algorithm defined by two parameters: refill rate r (tokens per second) and capacity b (maximum tokens). Tokens accumulate continuously during idle periods up to capacity b.

  7. Token Bucket Algorithm – Dev Docs

    Token Bucket Algorithm The Token Bucket algorithm is used to control the rate of requests, allowing bursts up to a certain limit while maintaining a steady rate over time.

  8. Understanding the Token Bucket Traffic Algorithm

    Aug 25, 2025 · The Token Bucket algorithm is like a toll booth that keeps the traffic flowing smoothly. It enforces limits without being too rigid, allowing both fairness and flexibility.

  9. Token Bucket Algorithm - Learnitweb

    What is the Token Bucket Algorithm? The Token Bucket Algorithm is a leaky bucket-based rate-limiting approach that provides a way to regulate the flow of requests, data packets, or messages over time. …

  10. Traffic Shaping with the Token Bucket Algorithm

    Jun 2, 2025 · First, define a bucket size; this will control the maximum burst size that is allowed to pass. Then define a flow of tokens that are being passed into the bucket, at constant rate: this determines …