Download the PHP package akbarali/nats-listener without Composer
On this page you can find all versions of the php package akbarali/nats-listener. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package nats-listener
Laravel NATS PHP Listener
TODO
Done ? | Name | Version |
---|---|---|
:white_check_mark: | Add command nats:pause and nats:continue . |
0.1.5 |
:white_check_mark: | Write error messages more clearly and translate them into English. | 0.1.7 |
:hourglass_flowing_sand: | Write a Sender for this Listener. | Pending |
:white_large_square: | Writing documentation. | In the future |
:white_large_square: | Add middleware method. | In the future |
:white_large_square: | Add Docs Auth Middleware. | In the future |
Install
After installing Nats Listener, publish its assets using the nats:install
Artisan command:
Configuration
After publishing Nats Listener's assets, its primary configuration file will be located at config/nats.php
.
This configuration file allows you to configure the queue worker options for your application.
Each configuration option includes a description of its purpose, so be sure to thoroughly explore this file.
Running Nats Listener
Once you have configured your supervisors and workers in your application's config/nats.php
configuration file, you may start Nats Listener using the nats:listener
Artisan command.
This single command will start all the configured worker processes for the current environment:
You may pause the Nats Listener process and instruct it to continue processing jobs using the nats:pause
and nats:continue
Artisan commands:
Deploying Nats Listener
When you're ready to deploy Nats Listener to your application's actual server, you should configure a process monitor to monitor the php artisan Nats Listener command and restart it if it exits unexpectedly. Don't worry, we'll discuss how to install a process monitor below. During your application's deployment process, you should instruct the Nats Listener process to terminate so that it will be restarted by your process monitor and receive your code changes:
Supervisor Configuration
Supervisor configuration files are typically stored within your server's /etc/supervisor/conf.d
directory.
Within this directory, you may create any number of configuration files that instruct supervisor how your processes should be monitored.
For example, let's create a nats.conf
file that starts and monitors a nats listener process:
Emotional Damage
I originally wrote this package because RabbitMQ was slow and had a lot of issues with our entire project. I thought NATS would be faster and more reliable. But in the end, it turned out that RabbitMQ is 25% faster.
All versions of nats-listener with dependencies
ext-pcntl Version *
basis-company/nats Version ^0.26.2
ext-json Version *
ext-posix Version *
akbarali/action-data Version ^1.3.0
akbarali/data-object Version ^2.7.2
laravel/framework Version ^9.0|^10.0|^11.0