In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
这篇文章主要介绍"Swoole协程与传统fpm同步模式的比较",在日常操作中,相信很多人在Swoole协程与传统fpm同步模式的比较问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"Swoole协程与传统fpm同步模式的比较"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
如果说数组是 PHP 的精髓,数组玩得不6的,根本不能算是会用PHP。那协程对于 Swoole 也是同理,不理解协程去用 Swoole,那可能不是很好去用它。
首先,Swoole 只能运行在命令行(Cli)模式下,所以我们开发调试都是使用命令行,而不是 php-fpm/apache 等。
在 Swoole 中,我们可以使用`\Swoole\Coroutine::create()`创建协程,或者你也可以使用简写`go()`。
初识 Swoole 协程
go(function(){ go(function(){ echo 0, PHP_EOL; }); echo 1, PHP_EOL;});go(function(){ echo 2, PHP_EOL;});go(function(){ echo 3, PHP_EOL;});
执行结果:
0123
Swoole 协程与同步模式比较
我们一直在说 Swoole 协程适合用于 I/O 密集场景,在同样的硬件配置环境下,它会比传统的同步模式承载更多的访问量。
我们熟悉的文件读写、网络通讯请求(MySQL、Redis、Http等)都是属于 I/O 密集型场景。
假设一次 SQL 查询为 100ms,在传统同步模式下,当前进程在这 100ms 的时间里,是不能做其它操作的。如果要执行十次这个 SQL,可能需要耗费 1s 以上。
而如果用协程,虽然不同协程之间也是按顺序执行,但是在前一个等待 100ms 期间,底层会调度 CPU,去执行其它协程的操作。也就是说,可能第一个查询还没返回结果,其它几个查询就已经发送给了 MySQL 并正在执行中了。如果开启十个协程,分别执行这个 SQL,可能只需要耗费 100+ms 即可完成。
测试代码如下:
Swoole\Runtime::enableCoroutine(); // 开启一键协程化 function work(){ $pdo = new \PDO('mysql:host=127.0.0.1;dbname=db_test', 'root', 'root'); $pdo->exec('select SLEEP(0.1)'); // 模拟sql需要执行 100ms 的情况}$time = microtime(true);for($i = 0; $i < 10; ++$i){ work();}echo 'time: ', (microtime(true) - $time), 's', PHP_EOL;$time = microtime(true);for($i = 0; $i < 10; ++$i){ go('work');}swoole_event_wait(); // 等待所有协程执行完echo 'time: ', (microtime(true) - $time), 's', PHP_EOL;
执行结果:
time: 1.0326268672943stime: 0.10734605789185s
上面的代码可以假想为,单进程处理 10 个请求所需的时间。每个请求需要执行一次耗费 100ms 的 SQL 语句。
同步模式,耗费 1s 左右的是 fpm。可以看出,在等待 100ms 期间是不能做任何事情的。
协程模型,耗费 0.1s 左右的是 Swoole。在等待 100ms 期间会挂起当前协程,底层调度会让 CPU 去执行其它协程的操作。
到此,关于"Swoole协程与传统fpm同步模式的比较"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.