merkeleon / laravel-nsq
There is no license information available for the latest version (v2.2.2) of this package.
Laravel NSQ
v2.2.2
2022-08-23 13:01 UTC
Requires
- php: ^7.1.3
- laravel/framework: 6.*|7.*|8.*
- merkeleon/phpnsq: ^1.0
Requires (Dev)
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2024-10-23 17:26:50 UTC
README
Laravel package for NSQ queue manager that uses Laravel's API
Installation
First, require the package using Composer:
composer require merkeleon/laravel-nsq
- Add new queue job as described in Laravel's manual:
php artisan make:job <JobName>
Edit this file according to Laravel's rules
- Set queue driver to NSQ
QUEUE_DRIVER=nsq
- Set env options for NSQ servers:
NSQSD_URL=127.0.0.1:4150
IP and port for Nsq daemon
NSQLOOKUP_URL=127.0.0.1:4161
IP and port for Nsq lookup daemon
Use comma as separator if you want to use several servers:
NSQSD_URL=127.0.0.1:4150,127.0.0.1:4151,127.0.0.1:4152
Example
Job class
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Support\Facades\Config;
class CoolJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public function __construct(...$args)
{
$this->queue = 'my-cool-jobs';
// $args code
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
// do the job
}
}
Some where in a code
<?php
... code ...
// Push timed task in the queue
CoolJob::dispatch(...$any_args);
... code ...