Phalcon(The fastest PHP framework)
dipesh-dhawan
27 Jan 2016 09:20 AM
Sharing my experience on the latest PHP framework Phalcon. What is Phalcon ?
Phalcon is full-stack, MVC based PHP framework like Codeigniter, Laravel, Yii with some extra features which differs it from all. Here are some points to understand the core difference:-
References:-
Phalcon is full-stack, MVC based PHP framework like Codeigniter, Laravel, Yii with some extra features which differs it from all. Here are some points to understand the core difference:- - The core reason why it differs from all is that unlike other PHP frameworks Phalcon is implemented as an extension written in C in order to optimize performance.
- This is intended to boost execution speed and reduce resource usage with the goal of handling more requests per second than comparable frameworks written primarily in PHP.
- Phalcon includes an ORM (Object-relational mapping) written in C.
- Phalcon also includes a high-level dialect of SQL called PHQL.
- Phalcon includes a template engine called Volt.
- PHP Phalcon C-extensions are loaded together with PHP one time on the web server’s daemon start process.
- Classes and functions provided by the extension are ready to use for any application.
- The code is compiled for a specific platform and isn’t interpreted.
- Phalcon is also loosely coupled, allowing you to use its objects as glue components based on the needs of your application.
References:- - Phalcon- High Performance PHP framework( https://phalconphp.com/)
- Sitepoint (http://www.sitepoint.com/phalconphp-yet-another-php-framework/) Comments and Suggestions are welcome.