03-25-2009, 09:18 PM
|
#8 (permalink)
|
|
Wizard
Join Date: Sep 2007
Posts: 1,296
Thanks: 17
|
Quote:
Originally Posted by dschreck
PHP sites are capable of handling millions of users a day. It's an extremely fast scripting language. You just have to use it correctly.
|
If by correctly, you mean making the intensive functions in C and adding them on, I would agree. But PHP is in and of itself slow because it is a interpreted scripting language. Even when cached, it is less efficient than hand written compiled code. The reason for this is that PHP code commands the PHP engine, not the machine.
|
|
|
|