PHPackages                             likewinter/queue-throttle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. likewinter/queue-throttle

AbandonedArchivedLibrary[Queues &amp; Workers](/categories/queues)

likewinter/queue-throttle
=========================

Laravel Beanstalkd Queue Throttle

66.8k2PHP

Since Sep 26Pushed 5y ago2 watchersCompare

[ Source](https://github.com/likewinter/queue-throttle)[ Packagist](https://packagist.org/packages/likewinter/queue-throttle)[ RSS](/packages/likewinter-queue-throttle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

DEPRECATED: use a built-in queue agnostic [implementation](https://github.com/likewinter/queue-throttle/issues/3#issuecomment-522147816) throttle mechanism from Laravel Framework
==================================================================================================================================================================================

[](#deprecated-use-a-built-in-queue-agnostic-implementation-throttle-mechanism-from-laravel-framework)

Laravel beanstalkd queue throttle
=================================

[](#laravel-beanstalkd-queue-throttle)

Installing
----------

[](#installing)

### Laravel

[](#laravel)

Register service provider by adding in `config/app.php`

```
'providers' => [
    // Other Service Providers

    Likewinter\QueueThrottle\QueueThrottleServiceProvider::class
],
```

### Lumen

[](#lumen)

Register service provider by adding in `bootstrap/app.php`

```
$app->register(Likewinter\QueueThrottle\QueueThrottleServiceProvider::class);
```

Settings
--------

[](#settings)

You can set Redis and Beanstalkd hosts in your .env file like

```
BEANSTALKD_HOST=beanstalkd
REDIS_HOST=redis

```

Using
-----

[](#using)

Inside your Job class add trait and set limits

```
use CanLimitRate;

protected $rateLimits = [
    ['requests' => 10, 'seconds' => 10],
    ['requests' => 15, 'seconds' => 30],
];
```

At the begining of `handle()` method use throttle

```
$this->throttle();
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/ccb222f2b8dfa802ef0f1c90ff3179febe89f8cdfb0fdf61783b97ffa26d7f82?d=identicon)[AnToni00](/maintainers/AnToni00)

---

Top Contributors

[![likewinter](https://avatars.githubusercontent.com/u/273071?v=4)](https://github.com/likewinter "likewinter (8 commits)")

---

Tags

beanstalkdlaravel-packagelumen-packagemessage-queuethrottle

### Embed Badge

![Health badge](/badges/likewinter-queue-throttle/health.svg)

```
[![Health](https://phpackages.com/badges/likewinter-queue-throttle/health.svg)](https://phpackages.com/packages/likewinter-queue-throttle)
```

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.3M26](/packages/league-geotools)[amphp/parser

A generator parser to make streaming parsers simple.

14952.8M16](/packages/amphp-parser)[amphp/serialization

Serialization tools for IPC and data storage in PHP.

13451.1M18](/packages/amphp-serialization)[enqueue/enqueue

Message Queue Library

19820.0M56](/packages/enqueue-enqueue)[deliciousbrains/wp-background-processing

WP Background Processing can be used to fire off non-blocking asynchronous requests or as a background processing tool, allowing you to queue tasks.

1.1k409.8k6](/packages/deliciousbrains-wp-background-processing)[react/async

Async utilities and fibers for ReactPHP

2238.8M171](/packages/react-async)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
