swoole / ext-async

Asynchronous callback client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Async-IO Client API

Coroutine style API became the mainstream in the Swoole core since version 4.3.0.

ext-async depends on swoole, it is an extension of Swoole, including the async callback style API.

You have to install Swoole extension before installing this extenion.

Major change since version 4.3.0

Async clients and API are moved to a separate PHP extension swoole_async since version 4.3.0, install swoole_async:

git clone https://github.com/swoole/ext-async.git
cd ext-async
phpize
./configure
make -j 4
sudo make install

Enable it by adding a new line extension=swoole_async.so to php.ini.

About

Asynchronous callback client


Languages

Language:PHP 54.8%Language:C++ 39.1%Language:C 4.5%Language:PLpgSQL 0.6%Language:M4 0.4%Language:Python 0.4%Language:JavaScript 0.1%Language:Shell 0.0%