PHPackages                             tufanbarisyildirim/laravel-resque-redis - 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. tufanbarisyildirim/laravel-resque-redis

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

tufanbarisyildirim/laravel-resque-redis
=======================================

Laravel Resque connector for Queue.

1.2.0(12y ago)1238MITPHPPHP &gt;=5.5.0

Since Jul 19Pushed 11y ago1 watchersCompare

[ Source](https://github.com/tufanbarisyildirim/laravel-resque)[ Packagist](https://packagist.org/packages/tufanbarisyildirim/laravel-resque-redis)[ RSS](/packages/tufanbarisyildirim-laravel-resque-redis/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (3)Versions (16)Used By (0)

Laravel Resque
--------------

[](#laravel-resque)

This package allows you to connect to Resque when using `Queue`.

Requirements
------------

[](#requirements)

- PHP 5.5+
- Illuminate\\Config 4.1+
- Illuminate\\Queue 4.1+
- Resque 1.2
- ResqueScheduler 1.1 (Optional)

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

[](#installation)

First you need to add the following to your project's `composer.json`:

```
"require": {
	"awellis13/laravel-resque": "1.1.x"
}

```

Now you need to run the following to install the package:

```
composer update

```

Next you need to delete the `'Illuminate\Redis\RedisServiceProvider',` service provider and add the following service providers to your `app/config/app.php`:

```
'Awellis13\Resque\ServiceProviders\ResqueServiceProvider',
'Awellis13\Resque\ServiceProviders\RedisServiceProvider'

```

Now you need to add the following to your `/app/config/queue.php` "connections" section:

```
"resque" => [
	"driver" => "resque"
]

```

If you wish to use this driver as your default Queue driver you will need to set the following as your "default" drive in `app/config/queue.php`:

```
"default" => "resque",

```

Usage
-----

[](#usage)

If you choose to not use this driver as your default Queue driver you can call a Queue method on demand by doing:

```
Queue::connection('resque')->push('JobName', ['name' => 'Andrew']);

```

### Enqueing a Job

[](#enqueing-a-job)

```
Queue::push('JobName', ['name' => 'Andrew']);

```

### Tracking a Job

[](#tracking-a-job)

```
$token = Queue::push('JobName', ['name' => 'Andrew'], true);
$status = Queue::getStatus($token);

```

### Enqueing a Future Job

[](#enqueing-a-future-job)

```
$when = time() + 3600; // 1 hour from now
Queue::later($when, 'JobName', ['name' => 'Andrew']);

```

Further Documentation
---------------------

[](#further-documentation)

- [PHP-Resque](https://github.com/chrisboulton/php-resque)
- [PHP-Resque-Scheduler](https://github.com/chrisboulton/php-resque-scheduler)

License
-------

[](#license)

Laravel Resque is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity66

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~16 days

Total

13

Last Release

4488d ago

PHP version history (3 changes)1.0PHP &gt;=5.3.0

1.1.2PHP &gt;=5.4.0

1.2.0PHP &gt;=5.5.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/6deb6aeaee50e977a23bd48c820eeced342db604f0cf95da3f1aaa54ded62725?d=identicon)[tufan](/maintainers/tufan)

---

Top Contributors

[![tufanbarisyildirim](https://avatars.githubusercontent.com/u/980848?v=4)](https://github.com/tufanbarisyildirim "tufanbarisyildirim (5 commits)")

---

Tags

laravelqueueresque

### Embed Badge

![Health badge](/badges/tufanbarisyildirim-laravel-resque-redis/health.svg)

```
[![Health](https://phpackages.com/badges/tufanbarisyildirim-laravel-resque-redis/health.svg)](https://phpackages.com/packages/tufanbarisyildirim-laravel-resque-redis)
```

PHPackages © 2026

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