摘要:協(xié)程與信箱得益于,我們可以基于的協(xié)程與快速實(shí)現(xiàn)一個(gè)信箱模式調(diào)度。樣例代碼比如在一個(gè)聊天室中,我們可以定義一個(gè)房間模型。
什么是Actor?
Actor對(duì)于PHPer來(lái)說(shuō),可能會(huì)比較陌生,寫(xiě)過(guò)Java的同學(xué)會(huì)比較熟悉,Java一直都有線程的概念(雖然PHP有Pthread,但不普及),它是一種非共享內(nèi)存的并發(fā)模型,每個(gè)Actor內(nèi)的數(shù)據(jù)獨(dú)立存在,Actor之間通過(guò)消息傳遞的形式進(jìn)行交互調(diào)度,且Actor是一種高度抽象化的編程模型,非常適合于游戲、硬件行業(yè)。
Swoole協(xié)程與信箱得益于Swoole4.x,我們可以基于Swoole的協(xié)程與Channel快速實(shí)現(xiàn)一個(gè)信箱模式調(diào)度。模擬代碼如下:
use SwooleCoroutineChannel; go(function (){ //創(chuàng)建十個(gè)信箱通道 $mailBoxes = []; for ($i = 1;$i <= 10;$i++){ $mailBoxes[$i] = new Channel(16); } //模擬master 郵局調(diào)度,隨機(jī)像一個(gè)信箱投遞消息 go(function ()use($mailBoxes){ while (1){ co::sleep(2); $key = rand(1,10); ($mailBoxes[$key])->push(time()); } }); //模擬actor 實(shí)體消費(fèi) for ($i = 1;$i <= 10;$i++){ go(function ()use($mailBoxes,$i){ while (1){ $msg = ($mailBoxes[$i])->pop(); echo "Actor {$i} recv msg : {$msg} "; } }); } });
以上代碼執(zhí)行輸出:
php test.php Actor 8 recv msg : 1559622691 Actor 10 recv msg : 1559622693 Actor 1 recv msg : 1559622695 Actor 5 recv msg : 1559622697
協(xié)程通道每次在POP遇到無(wú)數(shù)據(jù)的時(shí)候,都會(huì)自動(dòng)讓出執(zhí)行權(quán)(具體可以去看Swoole協(xié)程調(diào)度)
Actor庫(kù)基于上面的原理,我們實(shí)行了一個(gè)多進(jìn)程分布的協(xié)程Actor庫(kù)
composer require easyswoole/actor=2.x-dev
我們依賴(lài)dev庫(kù)進(jìn)行測(cè)試,生產(chǎn)可以自己依賴(lài)stable版本進(jìn)程關(guān)系
Easyswoole的Actor模型中,存在兩組進(jìn)程,一組是proxy進(jìn)程,用來(lái)實(shí)現(xiàn)Actor對(duì)外服務(wù),一組是worker進(jìn)程,proxy進(jìn)程與worker進(jìn)程之間通過(guò)unixsock進(jìn)行通訊,而Actor實(shí)例就均勻的分布worker之中。
樣例代碼比如在一個(gè)聊天室中,我們可以定義一個(gè)房間模型。
namespace EasySwooleActorTest; use EasySwooleActorAbstractActor; use EasySwooleActorActorConfig; class RoomActor extends AbstractActor { public static function configure(ActorConfig $actorConfig) { $actorConfig->setActorName("Room"); } public function onStart() { //每當(dāng)一個(gè)RoomActor實(shí)體被創(chuàng)建的時(shí)候,都會(huì)執(zhí)行該回調(diào) var_dump("room actor ".$this->actorId()." start"); } public function onMessage($msg) { //每當(dāng)一個(gè)RoomActor實(shí)體收到外部消息的時(shí)候,都會(huì)執(zhí)行該回調(diào)當(dāng) var_dump("room actor ".$this->actorId()." onmessage: ".$msg); return "reply at ".time(); } public function onExit($arg) { //每當(dāng)一個(gè)RoomActor實(shí)體退出的時(shí)候,都會(huì)執(zhí)行該回調(diào) var_dump("room actor ".$this->actorId()." exit at arg: ".$arg); return "exit at ".time(); } protected function onException(Throwable $throwable) { //每當(dāng)一個(gè)RoomActor出現(xiàn)異常的時(shí)候,都會(huì)執(zhí)行該回調(diào) var_dump($throwable->getMessage()); } }
在cli模式下創(chuàng)建一個(gè)Actor服務(wù)
use EasySwooleActorActor; use EasySwooleActorTestRoomActor; use EasySwooleActorProxyProcess; Actor::getInstance()->register(RoomActor::class); $list = Actor::getInstance()->generateProcess(); foreach ($list["proxy"] as $proxy){ /** @var ProxyProcess $proxy */ $proxy->getProcess()->start(); } foreach ($list["worker"] as $actors){ foreach ($actors as $actorProcess){ /** @var ProxyProcess $actorProcess */ $actorProcess->getProcess()->start(); } } while($ret = SwooleProcess::wait()) { echo "PID={$ret["pid"]} "; }
創(chuàng)建一個(gè)cli測(cè)試腳本
use EasySwooleActorActor; use EasySwooleActorTestRoomActor; Actor::getInstance()->register(RoomActor::class); go(function (){ $actorId = RoomActor::client()->create("create arg1"); var_dump($actorId); co::sleep(3); var_dump(RoomActor::client()->send($actorId,"this is msg")); co::sleep(3); var_dump(RoomActor::client()->exit($actorId,"this is exit arg")); co::sleep(3); RoomActor::client()->create("create arg2"); co::sleep(3); RoomActor::client()->create("create arg3"); co::sleep(3); var_dump(RoomActor::client()->sendAll("sendAll msg")); co::sleep(3); var_dump(RoomActor::client()->status()); co::sleep(3); var_dump(RoomActor::client()->exitAll("sendAll exit")); });
以上代碼執(zhí)行結(jié)果如下:
服務(wù)端
php test.php string(40) "room actor 00101000000000000000001 start" string(57) "room actor 00101000000000000000001 onmessage: this is msg" string(64) "room actor 00101000000000000000001 exit at arg: this is exit arg" string(40) "room actor 00101000000000000000002 start" string(40) "room actor 00103000000000000000001 start" string(57) "room actor 00101000000000000000002 onmessage: sendAll msg" string(57) "room actor 00103000000000000000001 onmessage: sendAll msg" string(60) "room actor 00101000000000000000002 exit at arg: sendAll exit" string(60) "room actor 00103000000000000000001 exit at arg: sendAll exit"
客戶(hù)端
php test2.php string(23) "00101000000000000000001" string(19) "reply at 1559623925" string(18) "exit at 1559623928" bool(true) array(3) { [1]=> int(1) [2]=> int(0) [3]=> int(1) } bool(true)
更多細(xì)節(jié)可以在EasySwoole項(xiàng)目官網(wǎng)得到文檔支持 http://easyswoole.com/
喜歡EasySwoole項(xiàng)目的,可以給個(gè)star https://github.com/easy-swool...
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/31647.html
摘要:然而盡管如此,很多人可能都沒(méi)有思考過(guò),如何優(yōu)雅的寫(xiě)出自己的物聯(lián)網(wǎng)服務(wù)器。 PHP不適合做物聯(lián)網(wǎng)服務(wù)端嗎? 在傳統(tǒng)的思維中,經(jīng)常會(huì)有人告訴你,php不適合用來(lái)做物聯(lián)網(wǎng)服務(wù)端,讓你換java,node,go等其他語(yǔ)言,是的,沒(méi)錯(cuò)傳統(tǒng)意義上的php,確實(shí)很難做物聯(lián)網(wǎng)服務(wù)器,因?yàn)樗鼘?shí)在太蹩腳了,當(dāng)然,這也不是意味著徹底就不能做。舉個(gè)例子,當(dāng)你想實(shí)現(xiàn)一個(gè)TCP服務(wù)器的時(shí)候,你可能需要寫(xiě)出原理大約...
摘要:新增新增模型方法,主動(dòng)刷新數(shù)據(jù)表結(jié)構(gòu)緩存。分布式并發(fā)模型是什么是一種與共享內(nèi)存對(duì)應(yīng)的并發(fā)模型,具有資源獨(dú)占性。都分布在不同的機(jī)器上。 One - 極簡(jiǎn) . 高性能 . 松耦合 . 分布式 . 可運(yùn)行于多種環(huán)境(cli,apache/php-fpm,swoole) 碼云: https://gitee.com/vicself/onegithub: https://github.com/li...
摘要:下文如無(wú)特殊聲明將使用進(jìn)程同時(shí)表示進(jìn)程線程。收到數(shù)據(jù)后服務(wù)器程序進(jìn)行處理然后使用向客戶(hù)端發(fā)送響應(yīng)?,F(xiàn)在各種高并發(fā)異步的服務(wù)器程序都是基于實(shí)現(xiàn)的,比如。 并發(fā) IO 問(wèn)題一直是服務(wù)器端編程中的技術(shù)難題,從最早的同步阻塞直接 Fork 進(jìn)程,到 Worker 進(jìn)程池/線程池,到現(xiàn)在的異步IO、協(xié)程。PHP 程序員因?yàn)橛袕?qiáng)大的 LAMP 框架,對(duì)這類(lèi)底層方面的知識(shí)知之甚少,本文目的就是詳細(xì)介...
摘要:只是一個(gè)事件發(fā)生器,實(shí)際對(duì)句柄的操作,如是在中完成的。的架構(gòu)采用多線程多進(jìn)程,因?yàn)榛?,所以每個(gè)可以處理無(wú)數(shù)個(gè)連接請(qǐng)求。如此,就輕松的處理了高并發(fā)。 swoole介紹swoole是PHP的一個(gè)擴(kuò)展。 簡(jiǎn)單理解:swoole=異步I/O+網(wǎng)絡(luò)通信 PHPer可以基于swoole去實(shí)現(xiàn)過(guò)去PHP無(wú)法實(shí)現(xiàn)的功能。 swoole如何處理高并發(fā)①Reactor模型介紹 IO復(fù)用異...
摘要:一閱前熱身為了更加形象的說(shuō)明同步異步阻塞非阻塞,我們以小明去買(mǎi)奶茶為例。等奶茶做好了,店員喊一聲小明,奶茶好了,然后小明去取奶茶。將響應(yīng)結(jié)果發(fā)給相應(yīng)的連接請(qǐng)求處理完成因?yàn)榛?,所以每個(gè)可以處理無(wú)數(shù)個(gè)連接請(qǐng)求。如此,就輕松的處理了高并發(fā)。 一、閱前熱身 為了更加形象的說(shuō)明同步異步、阻塞非阻塞,我們以小明去買(mǎi)奶茶為例。 1、同步與異步 ①同步與異步的理解 同步與異步的重點(diǎn)在消息通知的方式上...
閱讀 2572·2023-04-25 20:05
閱讀 2896·2023-04-25 17:56
閱讀 2210·2021-10-14 09:49
閱讀 2696·2019-08-29 15:10
閱讀 2930·2019-08-29 12:25
閱讀 428·2019-08-28 18:23
閱讀 765·2019-08-26 13:26
閱讀 1381·2019-08-23 18:21