|
|
|
|
|
by phplovesong
2094 days ago
|
|
Thats a total BS claim. I took a quick look at the top 25, and the ones that made the list (top 25) that are PHP based are: - 11: php-ngx-pgsql - 12: workerman-pgsql - 22: workerman - 23: php-ngx-mysql - 25: Swoole Here you see a trend, workerman and swoole are BOTH nodejs clones, they have a event loop and are non-blocking. This means you CANNOT use 95% of core PHP because its blocking by nature. These are all a non-starter for 99.9% of PHP based apps. Also swoole is a PHP C-extension, not a "installable" framework like say Symfony is, taht said these are NOT frameworks at all, not sure why they are on the list? Heres the REAL rankings of the PHP frameworks that are used in the wild: - 299: codeigniter - 323: fatfree - 369: cakephp - 370: symfony - 377: laravel PHP occupies the lower bottom of the ranking, and will probably always be there becuase og how PHP is built. The core model of execution is always going to be slower than a "running" program. This is evident with the nodejs clones. |
|