Download the PHP package linushstge/number-pool without Composer

On this page you can find all versions of the php package linushstge/number-pool. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package number-pool

Eloquent Trait for unique Model ascending numbers

Create a shared Number Pool for each of business number ranges to use native MySQL / MariaDB FOR UPDATE atomic locks if you run on a MySQL Master/Master Replication or on galera cluster or if you have multiple message queue workers which are consuming the same jobs.

If you're running on replication you're primary auto increments are probably not reliable for unique ascending numbers. With this Eloquent trait your able to generate ascending unique numbers while using InnoDB's native FOR UPDATE row lock.

Example Invoice Table on a Galera Cluster with three nodes:

id type number
1 invoice 1000
3 invoice 1001
6 invoice 1002

With Master-Master Replication or Galera cluster your primary auto increment is not reliable for any ascending numbers.

Installation

This package can be installed through composer:

After installation, you have to create a new migration with artisan:make migration for your number pools.

Example:

Number Pools stores a string identifier key and the last used number of any pool your application is using. With the key you are able to use the same number pools in multiple eloquent models.

Usage

Create a new for your first eloquent model and persist it to database.

Add the trait to one of your existing model and implement the abstract methods numberPoolKey and numberPoolAttribute to set up your pool and local model attribute where you wish to save your ascending unique incremented number.

On each Model creating event this trait will perform a native InnoDB lock inside a dedicated transaction to ensure uniqueness for the new generated number.

Custom increment step size

If you wish to specify the step size you can implement the public method
to dynamically adjust the step size for any new generated increments. You also can use rand to implement random steps between your numbers.

Please ensure to return a positive for your step size. Otherwise, the NumberPoolException will be thrown.


Usage of static Eloquent event hooks

As you may already know, laravel supports static booted events to hook inside a creating or created event. You can use them to build custom logic with your newly unique number pool integer.

For example:


FAQ

Is this package is compatible with Laravel Horizon?

Yes, you can use horizon, your own supervisor process monitor or native systemd services. By InnoDB's technology the native ROW READ LOCK is guaranteed.

Do I need InnoDB engine for all tables?

No, this package only requires InnoDB for your table.

Do I need redis?

No, redis is not required, but preferred for your message queue, especially if your consuming the same jobs on multiple workers.


License

The MIT License (MIT). Refer to the License for more information.


All versions of number-pool with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
illuminate/support Version ^9.0
illuminate/database Version ^9.0
illuminate/config Version ^9.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package linushstge/number-pool contains the following files

Loading the files please wait ....