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
300
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
280
Beyond Laravel Octane - Hyperf for Laravel Artisans
albertcht
1
820
Source Code Protection Techniques in PHP
albertcht
0
1.3k
High Concurrency Web Architecutre and Laravel Performance Tuning
albertcht
2
380
Build Your High Concurrency App With PHP and Swoole
albertcht
2
670
From Generator to Fiber the Road to Coroutine in PHP
albertcht
1
670
The System Architecture of Real-time Report in Laravel
albertcht
1
610
The Integration of Laravel with Swoole
albertcht
0
820
Deep Dive into Laravel Octane
albertcht
3
1k
Featured
See All Featured
RailsConf 2023
tenderlove
30
1.4k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
A brief & incomplete history of UX Design for the World Wide Web: 1989–2019
jct
1
330
Gemini Prompt Engineering: Practical Techniques for Tangible AI Outcomes
mfonobong
2
340
<Decoding/> the Language of Devs - We Love SEO 2024
nikkihalliwell
1
170
Beyond borders and beyond the search box: How to win the global "messy middle" with AI-driven SEO
davidcarrasco
3
97
Information Architects: The Missing Link in Design Systems
soysaucechin
0
850
AI in Enterprises - Java and Open Source to the Rescue
ivargrimstad
0
1.2k
A Tale of Four Properties
chriscoyier
163
24k
Odyssey Design
rkendrick25
PRO
2
560
DBのスキルで生き残る技術 - AI時代におけるテーブル設計の勘所
soudai
PRO
64
53k
Breaking role norms: Why Content Design is so much more than writing copy - Taylor Woolridge
uxyall
0
230
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