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
The Power of CSS Pseudo Elements
geoffreycrofte
77
6k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
Git: the NoSQL Database
bkeepers
PRO
431
66k
We Have a Design System, Now What?
morganepeng
53
7.8k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
139
34k
Done Done
chrislema
185
16k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Building a Modern Day E-commerce SEO Strategy
aleyda
43
7.6k
How STYLIGHT went responsive
nonsquared
100
5.8k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.4k
It's Worth the Effort
3n
187
28k
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