本文示例代码详见:https://github.com/52fhy/swoole_demo。
简介
Swoole是一个PHP扩展,提供了PHP语言的异步多线程服务器,异步TCP/UDP网络客户端,异步MySQL,异步Redis,数据库连接池,AsyncTask,消息队列,毫秒定时器,异步文件读写,异步DNS查询。 Swoole内置了Http/WebSocket服务器端/客户端、Http2.0服务器端。
Swoole: PHP的异步、并行、高性能网络通信引擎
http://www.swoole.com/
Github:
https://github.com/swoole
https://github.com/matyhtf
安装
Swoole需要使用源码安装。暂无Windows版扩展。
源码安装
wget -O swoole.zip https://github.com/swoole/swoole-src/archive/v1.9.11.zipunzip swoole.zipcd swoole phpize ./configure make && make install
pecl安装
由于pecl是需要编译的,所以需要先安装编译器(已安装编译器可以忽略):
yum install -y gcc gcc-c++ make cmake bison autoconf
然后:
网友评论