PHPackages                             biigle/laravel-round-robin-queue - 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. biigle/laravel-round-robin-queue

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

biigle/laravel-round-robin-queue
================================

A round robin load balancing queue for multiple queue connections

v1.1.2(6y ago)0224MITPHP

Since Dec 18Pushed 5y ago1 watchersCompare

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

READMEChangelog (4)Dependencies (7)Versions (5)Used By (0)

Round Robin Queue
=================

[](#round-robin-queue)

A round robin load balancing queue for multiple queue connections in Laravel or Lumen.

Works well with multiple [`biigle/laravel-remote-queue`](https://github.com/biigle/laravel-remote-queue) connections.

[![Build Status](https://camo.githubusercontent.com/83a321cb49eef59757b9da0c3b771cb26ed41a3b0ea2dad11e349ca5cebdd154/68747470733a2f2f7472617669732d63692e6f72672f626969676c652f6c61726176656c2d726f756e642d726f62696e2d71756575652e737667)](https://travis-ci.org/biigle/laravel-round-robin-queue)

Installation
------------

[](#installation)

```
composer require biigle/laravel-round-robin-queue

```

### Laravel

[](#laravel)

The service provider is auto-discovered by Laravel.

### Lumen

[](#lumen)

Add `$app->register(Biigle\RoundRobinQueue\RoundRobinQueueServiceProvider::class);` to `bootstrap/app.php`.

Set up
------

[](#set-up)

The round robin queue requires a persistent cache to work correctly. Make sure you have a cache set up and don't use the `array` cache.

Usage
-----

[](#usage)

Configure a new queue connection in `queue.connections` to use the `roundrobin` diver like this:

```
// queue.connections
[
 'rr' => [
    'driver' => 'roundrobin',
    'queue' => 'default',
    'connections' => ['q1', 'q2'],
 ],
 'q1' => [/* ... */],
 'q2' => [/* ... */],
]
```

The connection expects the additional config options `queue` and `connections`. The `queue` option sets the default queue name to which new jobs should be pushed. The `connections` option sets the other queue connections that should be used for load balancing.

Whenever you push a new job to the queue with the `roundrobin` driver, it will forward it to one of the connections that are configured in `connections`, in a round robin fashion. Example:

```
use Queue;

$queue = Queue::connection('rr');

$queue->push($job1); // Pushed to connection 'q1'.
$queue->push($job2); // Pushed to connection 'q2'.
$queue->push($job3); // Pushed to connection 'q1'.
$queue->push($job4); // Pushed to connection 'q2'.
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 92.9% 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.

###  Release Activity

Cadence

Every ~155 days

Total

4

Last Release

2231d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2457311?v=4)[Martin Zurowietz](/maintainers/mzur)[@mzur](https://github.com/mzur)

---

Top Contributors

[![mzur](https://avatars.githubusercontent.com/u/2457311?v=4)](https://github.com/mzur "mzur (13 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

laravellumenqueueround-robin

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/biigle-laravel-round-robin-queue/health.svg)

```
[![Health](https://phpackages.com/badges/biigle-laravel-round-robin-queue/health.svg)](https://phpackages.com/packages/biigle-laravel-round-robin-queue)
```

###  Alternatives

[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k12.1M99](/packages/laravel-pulse)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[illuminate/queue

The Illuminate Queue package.

20331.4M1.2k](/packages/illuminate-queue)[illuminate/bus

The Illuminate Bus package.

6043.8M409](/packages/illuminate-bus)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

3786.5k](/packages/harris21-laravel-fuse)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)

PHPackages © 2026

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