Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
How Swoole Blows Up Your Mind
Search
Albert Chen
December 20, 2022
1
280
How Swoole Blows Up Your Mind
PHPCon Okinawa 2019
Albert Chen
December 20, 2022
Tweet
Share
More Decks by Albert Chen
See All by Albert Chen
Hypervel - A Coroutine Framework for Laravel Artisans
albertcht
1
240
Beyond Laravel Octane - Hyperf for Laravel Artisans
albertcht
1
570
Source Code Protection Techniques in PHP
albertcht
0
1.2k
High Concurrency Web Architecutre and Laravel Performance Tuning
albertcht
2
340
Build Your High Concurrency App With PHP and Swoole
albertcht
2
610
From Generator to Fiber the Road to Coroutine in PHP
albertcht
1
620
The System Architecture of Real-time Report in Laravel
albertcht
1
580
The Integration of Laravel with Swoole
albertcht
0
760
Deep Dive into Laravel Octane
albertcht
3
970
Featured
See All Featured
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.9k
Optimising Largest Contentful Paint
csswizardry
37
3.5k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3k
Automating Front-end Workflow
addyosmani
1371
200k
Speed Design
sergeychernyshev
32
1.2k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.2k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.7k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.7k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
Learning to Love Humans: Emotional Interface Design
aarron
274
41k
The Language of Interfaces
destraynor
162
25k
Fireside Chat
paigeccino
40
3.7k
Transcript
How Swoole Blows Up Your Mind? @PHPCon Okinawa 2019 By
Albert Chen
About Me • Albert Chen • Software Architect • M17
HandsUp • Open Source Maintainer
What is Swoole?
None
What is Swoole? • A C extension for PHP •
An asynchronous network engine for PHP • Features: • Event-driven non-blocking I/O • HTTP / HTTP2 / Websocket / TCP / UDP • Coroutine (CSP Model) • High performance for high concurrency
Why PHP Performs Poorly in High Concurrency?
Lifecycle in PHP
Lifecycle in PHP PHP Files Tokenizing Semantic Parsing AST Generate
Bytecode Execute Bytecode Output Load Bytecode From Memory Check Bytecode Cache
Blocking I/O in PHP Request Request Request Request PHP FPM
FPM Pool FPM Pool Worker Worker Worker Worker Blocking I/O
Eventloop in NodeJS
There’s no Eventloop in Traditional PHP
Let’s See What Changes in Swoole?
Structure in Swoole Server
Structure in Swoole Server • Code Is Persistent in Memory
• Swoole Takes Lifecycle Over PHP • Reduce Initialization Steps • Reduce Response Latency • Event-driven Non-blocking I/O for Requests
Benchmark Comparison of Go with Swoole
Server Benchmark in Go
Server Benchmark in Go
Server Benchmark in Swoole
Server Benchmark in Swoole
This Doesn’t Mean PHP with Swoole is Faster Than Go
(Of Course Not)
Coroutine in Swoole
Coroutine in Swoole • Blocking I/Os Are Scheduled By Coroutine
Automatically.
Coroutine in Swoole • Blocking I/Os Are Scheduled By Coroutine
Automatically.
Coroutine in Swoole • CSP Model
Does This Mean Every Blocking I/O Doesn’t Block Anymore?
Coroutine in Swoole • How about This?
Coroutine in Swoole • How about This?
Runtime Hooks Transform Blocking I/Os into Coroutines with Magic!
Use Case In HandsUp
Use Case Facebook Webhooks Message Load Balancer Server Server Server
Queue PubNub Service Analysis Service Swoole Service PubSub Many to Many Queue Workers High Concurrent Requests
Use Case • Replace Guzzle Handler with Swoole Client
Q&A