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
32
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
Designing Experiences People Love
moore
142
24k
Statistics for Hackers
jakevdp
799
220k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
229
22k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.4k
Rails Girls Zürich Keynote
gr2m
95
14k
Making Projects Easy
brettharned
116
6.3k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Done Done
chrislema
184
16k
YesSQL, Process and Tooling at Scale
rocio
173
14k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
138
34k
Fireside Chat
paigeccino
37
3.5k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
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