Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
Swoole in 5 Minutes [en]
Christoph Lühr
February 06, 2018
Technology
1
11k
Swoole in 5 Minutes [en]
Blazingly-Fast, Event-Driven, Asynchronous PHP. Berlin PHP Usergroup 02/06/2018
Christoph Lühr
February 06, 2018
Tweet
Share
More Decks by Christoph Lühr
See All by Christoph Lühr
The how and why of getting Freelancers
chluehr
0
41
Content & Master Data Management with Pimcore
chluehr
1
260
Master Data Management with Pimcore
chluehr
0
110
PIM & Master Data Management with Pimcore 5 [en]
chluehr
2
250
Digital Transformation & Master Data Management with Pimcore 5
chluehr
0
180
LXD System Containers [en]
chluehr
0
170
Developing with Pimcore
chluehr
0
180
Zero to Hero [en]
chluehr
2
160
Performante Web-Apps [de]
chluehr
1
150
Other Decks in Technology
See All in Technology
Hasuraの本番運用に向けて
nori3tsu
0
260
WINTICKET QA における Autify 活用
kj455
1
180
2年で10→70人へ! スタートアップの 情報セキュリティ課題と施策
miekobayashi
1
180
インフラ技術基礎勉強会 開催概要
toru_kubota
0
110
SPA・SSGでSSRのようなOGP対応!
simo123
2
130
私見「UNIXの考え方」/20230124-kameda-unix-phylosophy
opelab
0
130
The Stable Team - 機能する安定したチームをつくる - / The Stable Team
takaking22
14
7.5k
【Λ(らむだ)】いつのまにリスキリング / RPALT20230117
lambda
0
380
20230117_JAWS-UG_朝会_41_LT資料
tsumita
0
290
それでもどうしてRecoilを使うのか / Harajuku.ts Meetup Recoil
okunokentaro
11
3.2k
ROS_Japan_UG_#49_LT
maeharakeisuke
0
190
plotlyで動くグラフを作る
kosshi
0
570
Featured
See All Featured
Faster Mobile Websites
deanohume
295
29k
Debugging Ruby Performance
tmm1
67
11k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
318
19k
Creatively Recalculating Your Daily Design Routine
revolveconf
207
11k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
10
1.3k
Music & Morning Musume
bryan
36
4.6k
Pencils Down: Stop Designing & Start Developing
hursman
114
10k
Typedesign – Prime Four
hannesfritz
34
1.5k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
6
830
Fontdeck: Realign not Redesign
paulrobertlloyd
74
4.3k
Teambox: Starting and Learning
jrom
124
7.9k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
29
7.7k
Transcript
Christoph Lühr @chluehr / bephpug 2018 "Fast, faster, Swoole" Teaser:
Swoole in 5 Minutes
None
SIN CE 2000
None
"Blazingly-Fast, Event-Driven, Asynchronous PHP."
None
$ pecl install swoole
$ brew install swoole
<?php $server = new \Swoole\Http\Server('0.0.0.0', 9000); $server->on('Request', function ($request, $response)
{ $response->end('OK'); }); $server->start();
<?php $loop = React\EventLoop\Factory::create(); $server = stream_socket_server('tcp://0.0.0.0:9000'); stream_set_blocking($server, 0); $loop->addReadStream($server,
function ($server) use ($loop) { $conn = stream_socket_accept($server); $data = "HTTP/1.1 200 OK\r\nContent-Length: 3\r\n\r\nHi\n"; $loop->addWriteStream($conn, function ($conn) use (&$data, $loop) { $written = fwrite($conn, $data); if ($written === strlen($data)) { fclose($conn); $loop->removeStream($conn); } else { $data = substr($data, $written); } }); }); $loop->run();
PHP-PM
None
Sugar and Cream? (PHP is not enough ...)
Async IO
File I/O (and some tagline to go along)
TCP Clients MySQL / Redis / HTTP / WebSocket
"Reality Distortion" BENCHMARKS
300.000 Req/Sec
wrk -t4 -c400 -d10s http://127.0.0.1:1337/ Running 10s test @ http://127.0.0.1:1337/
4 threads and 400 connections Thread Stats Avg Stdev Max +/- Stdev Latency 1.46ms 1.42ms 27.96ms 85.66% Req/Sec 75.29k 36.43k 183.55k 72.75% 3007806 requests in 10.06s, 605.25MB read Requests/sec: 299103.32 Transfer/sec: 60.19MB
wrk -t16 -c400 -d30s http://localhost:9000/ Running 30s test @ http://localhost:9000/
16 threads and 400 connections Thread Stats Avg Stdev Max +/- Stdev Latency 6.97ms 7.07ms 226.95ms 93.28% Req/Sec 4.00k 0.96k 15.36k 76.15% 1909179 requests in 30.09s, 282.21MB read Requests/sec: 63442.77 Transfer/sec: 9.38MB
Demo
Real World(tm) References?
None
None
To good to be true...? DRAWBACKS
中文
None
Thanks! Questions? Christoph Lühr
[email protected]
[email protected]
@chluehr Slides license Attribution-NonCommercial-ShareAlike
3.0 http://creativecommons.org/licenses/by-nc-sa/3.0/
• Swoole 2.0 https://www.swoole.co.uk/