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