PHP-异步网络通信引擎swoole安装

Swoole:面向生产环境的 PHP 异步网络通信引擎

前言

基于 PHP 7.0.0 或以上版本 (版本越高性能越好)

安装

自动安装

1
pecl install swoole

手动编译

1
2
3
4
5
6
git clone https://github.com/swoole/swoole-src.git
cd swoole-src
phpize
./configure --enable-openssl --enable-sockets --enable-http2 --enable-mysqlnd
make
make install

异常

  • 升级GCC

    1
    2
    3
    yum install centos-release-scl
    yum install devtoolset-7
    scl enable devtoolset-7 bash
  • 安装pecl

    1
    yum install php-pear php-devel
您的支持将鼓励我继续创作