本文示例代碼詳見:https://github.com/52fhy/swoole_demo。
簡介
Swoole是一個PHP擴(kuò)展,提供了PHP語言的異步多線程服務(wù)器,異步TCP/UDP網(wǎng)絡(luò)客戶端,異步MySQL,異步Redis,數(shù)據(jù)庫連接池,AsyncTask,消息隊列,毫秒定時器,異步文件讀寫,異步DNS查詢。 Swoole內(nèi)置了Http/WebSocket服務(wù)器端/客戶端、Http2.0服務(wù)器端。
Swoole: PHP的異步、并行、高性能網(wǎng)絡(luò)通信引擎
http://www.swoole.com/
Github:
https://github.com/swoole
https://github.com/matyhtf
安裝
Swoole需要使用源碼安裝。暫無Windows版擴(kuò)展。
源碼安裝
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
然后:
網(wǎng)友評論