Download the PHP package antares/pool without Composer

On this page you can find all versions of the php package antares/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 pool

Pool

SensioLabsInsight Build Status Latest Stable Version License

This library provides you simple pools. This is especially useful when working with React: this way you may share resources such as database connections and boost your application's performance.

Suggestions and contributions are welcome!

Install

You can add this library as a dependency using composer this way:

Compatibility

This library is compatible with PHP 5.4+, PHP 7 and HHVM.

Documentation

Resources accepted by the pools

First of all, please note that the pools provided only store objects. Values such as integers, string or arrays cannot be stored. If needed, you can wrap these values into a stdClass.

PoolInterface

The pools provided implement the PoolInterface interface, which provides the following methods:

Pool

The most basic pool provided is the Pool class. Let's see an example of how it can be used.

As shown in this example, it is important to release the resource when it is not needed anymore. If you don't, a new instance will be created each time the resource will be asked, and will stay in the memory.

StaticPool

Given the structure of your application, the code where you define your pool may be uselessly executed several times. In this case, the StaticPool can be useful. Internally, it contains a static instance of Pool which is shared between every instance of StaticPool. Take a look at the following piece of code:

Here, the first time the pool is instanciated, its resources will be defined. The following times, the definition step will be skipped. Each instance of StaticPool will use the same internal pool and its use is eased.

Pool events

You can attach callbacks that will be called when some events are triggered by the pool.

4 events may happen:

There are 3 ways to define callbacks:

Note that the callbacks are combinable.

Below is an example of how you can use callbacks.


All versions of pool with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.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 antares/pool contains the following files

Loading the files please wait ....