mingalevme / illuminate-uqueue by mingalevme

Laravel/Lumen uniqueable queues (Database, Redis)
29,132
21
5
Package Data
Maintainer Username: mingalevme
Maintainer Contact: mingalevme@gmail.com (Mingalev Mikhail)
Package Create Date: 2017-09-22
Package Last Update: 2020-10-15
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:15:35
Package Statistics
Total Downloads: 29,132
Monthly Downloads: 698
Daily Downloads: 46
Total Stars: 21
Total Watchers: 5
Total Forks: 7
Total Open Issues: 0

illuminate-uqueue

Provides support for uniqueable queues for Laravel/Lumen 5.5 and higher.

Travis CI

Build Status

Codecov

codecov

Supported drivers:

  • Database
  • Redis (Based on Sorted Sets)

Installation

  1. composer require mingalevme/illuminate-uqueue

  2. In Laravel 5.5, the service provider and facade will automatically get registered.

    For older versions of the framework or Lumen, follow the steps below:

    Register the appropriate service provider \Mingalevme\Illuminate\UQueue\LaravelUQueueServiceProvider::class or \Mingalevme\Illuminate\UQueue\LumenUQueueServiceProvider::class.

  3. If you plan to use the database as a driver you should add the migration (change the table name if necessary):

<?php // /src/migrations/2017_01_01_000002_jobs_add_uniqueable.php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class JobsAddUniqueable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        if (!Schema::hasColumn('jobs', 'unique_id')) {
            Schema::table('jobs', function($table) {
                $table->string('unique_id')->nullable();
                $table->unique(['queue', 'unique_id'], 'jobs_queue_unique_id_unique');
            });
        }
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        if (Schema::hasColumn('jobs', 'unique_id')) {
            Schema::table('jobs', function (Blueprint $table) {
                $table->dropUnique('jobs_queue_unique_id_unique');
                $table->dropColumn('unique_id');
            });
        }
    }
}

  1. Create a job that implements the interface \Mingalevme\Illuminate\UQueue\Jobs\Uniqueable:
<?php

namespace App\Jobs;

use Mingalevme\Illuminate\UQueue\Jobs\Uniqueable;

class ExampleJob implements Uniqueable
{
    protected $data;
    
    public function __construct(array $data)
    {
        ksort($data);
        $this->data = $data;
    }
    
    public function uniqueable()
    {
        return md5(json_encode($this->data));
    }
    
    public function handle()
    {
        // ...
    }
}