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
Phalcon Framework: San Antonio Web Developers G...
Search
Josh Freeman
March 20, 2014
0
33
Phalcon Framework: San Antonio Web Developers Group
Presentation by Josh Freeman at the San Antonio Web Developers Group Meetup on March 20, 2014.
Josh Freeman
March 20, 2014
Tweet
Share
More Decks by Josh Freeman
See All by Josh Freeman
Communicating Intent Through Git 2017
joshfreemanio
0
55
Communicating Intent Through Git
joshfreemanio
0
280
Featured
See All Featured
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.3k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
10
630
How to Think Like a Performance Engineer
csswizardry
27
2.2k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
1k
Reflections from 52 weeks, 52 projects
jeffersonlam
355
21k
Why You Should Never Use an ORM
jnunemaker
PRO
60
9.6k
Building an army of robots
kneath
306
46k
Into the Great Unknown - MozCon
thekraken
40
2.1k
The Cult of Friendly URLs
andyhume
79
6.6k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.7k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
9
940
Rails Girls Zürich Keynote
gr2m
95
14k
Transcript
Josh Freeman San Antonio Web Development Group 20 March 2014
What is a Framework? • Web Development Library • Application
Skeleton • Proven Functionality • Hopes and Dreams of a Developer
The Problem with Frameworks • Speed • Complexity • Resources
PHP as an Interpreted Language ➔ Receive Request (from Apache/Nginx)
➔ Read file from HHD/SSD ➔ Parse file ➔ Compile into OpCodes ➔ Execute through Zend Engine ➔ Render Output Davey Shafik: PHP Performance I: Everything You Need to Know about OpCode Caches
Back to the Problem with Frameworks • Framework design requires
many files • PHP lifecycle runs for every file called during runtime (without caching) • Framework load happens for EVERY request
Phalcon to the Rescue!
What is Phalcon? MVC Framework SOLID Design C Extension Awesome
Benchmarks Operating System: Mac OS X Lion 10.7.4 Web Server:
Apache httpd 2.2.22 PHP: 5.3.15 CPU: 2.04 Ghz Intel Core i5 Main Memory: 4GB 1333 MHz DDR3 Hard Drive: 500GB SATA Disk
Benchmarks File Includes
Benchmarks Memory Consumption
Benchmarks Response Time
Benchmarks Response Time
Do I Need to Know C? NO
Do I Need to Know PHP? YES
OK, What Do I Start? ~$ sudo apt-get install php5-dev
libpcre3-dev gcc make ~$ git clone git://github.com/phalcon/cphalcon.git ~$ cd cphalcon/build ~$ sudo ./install
OK, What's Next? #Ubuntu: Add this line in your php.ini
extension=phalcon.so
The Good Ol' Restart Restart your Web server
Now What? READ phalconphp.com
Demonstration
Feedback || Questions Josh Freeman @jdfreeman11 github.com/jdfreeman
Roll the Credits • Phalcon Development Team – phalconphp.com •
Davey Shafik – PHP Performance: Under The Hood – PHP Performance I: Everything You Need to Know about OpCode Caches • MemeGenerator/KnowYourMeme